Searched defs:origin (Results 1 - 25 of 760) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebSerializedOrigin.cpp12 WebSerializedOrigin::WebSerializedOrigin(const SecurityOrigin& origin) argument
13 : m_string(origin.toString())
/external/chromium_org/url/
H A Dorigin.cc5 #include "url/origin.h"
13 Origin::Origin(const std::string& origin) : string_(origin) { argument
14 DCHECK(origin == "null" || MatchPattern(origin, "?*://?*"));
15 DCHECK_GT(origin.size(), 0u);
16 DCHECK_NE(origin[origin.size() - 1], '/');
H A Dorigin_unittest.cc6 #include "url/origin.h"
15 Origin origin; local
16 EXPECT_EQ("null", origin.string());
20 Origin origin("null");
21 EXPECT_EQ("null", origin.string());
25 Origin origin("http://example.com:8080");
26 EXPECT_EQ("http://example.com:8080", origin.string());
30 Origin origin("wss://example2.com");
31 EXPECT_EQ("wss://example2.com", origin.string());
/external/chromium_org/chrome/browser/services/gcm/
H A Dpush_messaging_application_id.h24 : origin(GURL::EmptyGURL()), service_worker_registration_id(-1) {}
25 PushMessagingApplicationId(const GURL& origin, argument
27 : origin(origin),
33 const GURL origin; member in struct:gcm::PushMessagingApplicationId
/external/chromium_org/content/public/browser/
H A Dservice_worker_usage_info.h15 // Used to report per-origin storage info for registered Service Workers.
18 ServiceWorkerUsageInfo(const GURL& origin, const std::vector<GURL>& scopes);
19 ServiceWorkerUsageInfo(const GURL& origin);
23 // The origin this object is describing.
24 GURL origin; member in class:content::ServiceWorkerUsageInfo
26 // The set of all Service Worker registrations within this origin;
H A Dsession_storage_usage_info.h12 GURL origin; member in struct:content::SessionStorageUsageInfo
H A Dindexed_db_info.cc9 IndexedDBInfo::IndexedDBInfo(const GURL& origin, argument
14 : origin_(origin),
H A Dlocal_storage_usage_info.h16 GURL origin; member in struct:content::LocalStorageUsageInfo
H A Dservice_worker_usage_info.cc9 ServiceWorkerUsageInfo::ServiceWorkerUsageInfo(const GURL& origin, argument
11 : origin(origin), scopes(scopes) {
14 ServiceWorkerUsageInfo::ServiceWorkerUsageInfo(const GURL& origin) argument
15 : origin(origin) {
/external/chromium_org/chrome/browser/extensions/
H A Dmock_extension_special_storage_policy.h22 virtual bool IsStorageProtected(const GURL& origin) OVERRIDE;
23 virtual bool IsStorageUnlimited(const GURL& origin) OVERRIDE;
24 virtual bool IsStorageSessionOnly(const GURL& origin) OVERRIDE;
25 virtual bool CanQueryDiskSize(const GURL& origin) OVERRIDE;
29 void AddProtected(const GURL& origin) { argument
30 protected_.insert(origin);
/external/chromium_org/chrome/browser/prerender/
H A Dprerender_origin.cc36 const char* NameFromOrigin(Origin origin) { argument
37 DCHECK(static_cast<int>(origin) >= 0 &&
38 origin <= ORIGIN_MAX);
39 return kOriginNames[origin];
/external/chromium_org/components/autofill/content/renderer/
H A Dtest_password_autofill_agent.cc16 const blink::WebSecurityOrigin& origin) {
15 OriginCanAccessPasswordManager( const blink::WebSecurityOrigin& origin) argument
/external/chromium_org/components/autofill/core/browser/
H A Dautofill_data_model_unittest.cc17 TestAutofillDataModel(const std::string& guid, const std::string& origin) argument
18 : AutofillDataModel(guid, origin) {}
H A Dautofill_data_model.h22 AutofillDataModel(const std::string& guid, const std::string& origin);
40 std::string origin() const { return origin_; } function in class:autofill::AutofillDataModel
41 void set_origin(const std::string& origin) { origin_ = origin; } argument
47 // The origin of this data. This should be
51 // URL, identifying the origin for non-aggregated data, or
52 // (c) an empty string, indicating that the origin for this data is unknown.
/external/chromium_org/components/translate/core/common/
H A Dtranslate_util_unittest.cc87 GURL origin = translate::GetTranslateSecurityOrigin(); local
88 EXPECT_EQ(std::string(translate::kSecurityOrigin), origin.spec());
/external/chromium_org/content/browser/appcache/
H A Dmock_appcache_service.cc18 const GURL& origin, const net::CompletionCallback& callback) {
17 DeleteAppCachesForOrigin( const GURL& origin, const net::CompletionCallback& callback) argument
/external/chromium_org/third_party/WebKit/Source/core/loader/
H A DMixedContentCheckerTest.cpp20 const char* origin; member in struct:blink::TestCase
35 const char* origin = cases[i].origin; local
39 KURL originUrl(KURL(), origin); local
42 EXPECT_EQ(expectation, MixedContentChecker::isMixedContent(securityOrigin.get(), targetUrl)) << "Origin: " << origin << ", Target: " << target << ", Expectation: " << expectation;
/external/eigen/bench/btl/data/
H A Dgnuplot_common_settings.hh45 set origin 0,0 variable
/external/apache-http/src/org/apache/http/impl/cookie/
H A DAbstractCookieAttributeHandler.java46 public void validate(final Cookie cookie, final CookieOrigin origin) argument
51 public boolean match(final Cookie cookie, final CookieOrigin origin) { argument
/external/chromium_org/android_webview/renderer/
H A Daw_render_frame_ext.cc26 blink::WebSecurityOrigin origin = frame->document().securityOrigin(); local
27 origin.grantLoadLocalResources();
/external/chromium_org/chrome/browser/browsing_data/
H A Dbrowsing_data_helper.cc35 bool BrowsingDataHelper::HasWebScheme(const GURL& origin) { argument
36 return BrowsingDataHelper::IsWebScheme(origin.scheme());
45 bool BrowsingDataHelper::HasExtensionScheme(const GURL& origin) { argument
46 return BrowsingDataHelper::IsExtensionScheme(origin.scheme());
51 const GURL& origin,
55 if (BrowsingDataHelper::HasExtensionScheme(origin.GetOrigin()) &&
59 // If a websafe origin is unprotected, it matches iff UNPROTECTED_WEB.
60 if ((!policy || !policy->IsStorageProtected(origin.GetOrigin())) &&
61 BrowsingDataHelper::HasWebScheme(origin.GetOrigin()) &&
67 policy->IsStorageProtected(origin
50 DoesOriginMatchMask( const GURL& origin, int origin_set_mask, storage::SpecialStoragePolicy* policy) argument
[all...]
/external/chromium_org/chrome/browser/media/
H A Ddesktop_streams_registry.h24 // |source| for the |origin|. Returns identifier of the new stream.
28 const GURL& origin,
35 // RenderFrame/origin. Otherwise returns ID of the source and removes it from
40 const GURL& origin,
50 GURL origin; member in struct:DesktopStreamsRegistry::ApprovedDesktopMediaStream
/external/chromium_org/chrome/browser/password_manager/
H A Dsync_metrics.cc36 const std::string& origin) {
37 if (origin != GaiaUrls::GetInstance()->gaia_url().GetOrigin().spec())
34 IsSyncAccountCredential(Profile* profile, const std::string& username, const std::string& origin) argument
/external/chromium_org/chrome/renderer/extensions/
H A Dmedia_galleries_custom_bindings.cc31 const GURL origin = GURL(webframe->document().securityOrigin().toString()); local
33 storage::GetFileSystemName(origin, storage::kFileSystemTypeExternal);
37 storage::GetExternalFileSystemRootURIString(origin, fs_mount));
/external/chromium_org/chrome/test/chromedriver/
H A Dbasic_types.h31 WebRect(const WebPoint& origin, const WebSize& size);
39 WebPoint origin; member in struct:WebRect

Completed in 2377 milliseconds

1234567891011>>