Searched refs:origin (Results 201 - 225 of 1627) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/browsing_data/
H A Dbrowsing_data_file_system_helper.cc39 virtual void DeleteFileSystemOrigin(const GURL& origin) OVERRIDE;
53 // Deletes all file systems associated with |origin|. This must be called on
55 void DeleteFileSystemOriginInFileThread(const GURL& origin);
112 const GURL& origin) {
118 this, origin));
175 const GURL& origin) {
177 filesystem_context_->DeleteDataForOriginOnFileTaskRunner(origin);
183 const GURL& origin) : origin(origin) {}
111 DeleteFileSystemOrigin( const GURL& origin) argument
174 DeleteFileSystemOriginInFileThread( const GURL& origin) argument
182 FileSystemInfo( const GURL& origin) argument
199 AddFileSystem( const GURL& origin, const storage::FileSystemType type, const int64 size) argument
[all...]
H A Dbrowsing_data_file_system_helper_unittest.cc103 bool OpenFileSystem(const GURL& origin, argument
108 origin, type, open_mode,
118 // to verify the existence of a file system for a specified type and origin,
121 bool FileSystemContainsOriginAndType(const GURL& origin, argument
124 origin, type, storage::OPEN_FILE_SYSTEM_FAIL_IF_NONEXISTENT);
173 // to create a filesystem of a given type for a specified origin.
174 void CreateDirectoryForOriginAndType(const GURL& origin, argument
177 origin, type, storage::OPEN_FILE_SYSTEM_CREATE_IF_NONEXISTENT);
216 if (info->origin == kOrigin1) {
223 } else if (info->origin
[all...]
H A Dmock_browsing_data_file_system_helper.h26 virtual void DeleteFileSystemOrigin(const GURL& origin) OVERRIDE;
29 void AddFileSystem(const GURL& origin,
/external/chromium_org/android_webview/native/
H A Daw_quota_manager_bridge_impl.cc51 void OnUsageAndQuotaObtained(const GURL& origin,
100 for (std::set<GURL>::const_iterator origin = origins.begin();
101 origin != origins.end();
102 ++origin) {
104 *origin,
106 base::Bind(&GetOriginsTask::OnUsageAndQuotaObtained, this, *origin));
113 const GURL& origin,
119 origin_.push_back(origin.spec());
224 JNIEnv* env, jobject object, jstring origin) {
226 base::android::ConvertJavaStringToUTF16(env, origin));
112 OnUsageAndQuotaObtained( const GURL& origin, storage::QuotaStatusCode status_code, int64 usage, int64 quota) argument
223 DeleteOrigin( JNIEnv* env, jobject object, jstring origin) argument
232 DeleteOriginOnUiThread( const base::string16& origin) argument
266 GetOriginsCallbackImpl( int jcallback_id, const std::vector<std::string>& origin, const std::vector<int64>& usage, const std::vector<int64>& quota) argument
306 GetUsageAndQuotaForOrigin( JNIEnv* env, jobject object, jstring origin, jint callback_id, bool is_quota) argument
321 GetUsageAndQuotaForOriginOnUiThread( const base::string16& origin, jint callback_id, bool is_quota) argument
[all...]
/external/apache-http/src/org/apache/http/impl/cookie/
H A DRFC2965DomainAttributeHandler.java114 public void validate(final Cookie cookie, final CookieOrigin origin) argument
119 if (origin == null) {
120 throw new IllegalArgumentException("Cookie origin may not be null");
122 String host = origin.getHost().toLowerCase(Locale.ENGLISH);
170 + "Domain of origin: \""
179 public boolean match(final Cookie cookie, final CookieOrigin origin) { argument
183 if (origin == null) {
184 throw new IllegalArgumentException("Cookie origin may not be null");
186 String host = origin.getHost().toLowerCase(Locale.ENGLISH);
H A DRFC2965PortAttributeHandler.java128 public void validate(final Cookie cookie, final CookieOrigin origin) argument
133 if (origin == null) {
134 throw new IllegalArgumentException("Cookie origin may not be null");
136 int port = origin.getPort();
152 public boolean match(final Cookie cookie, final CookieOrigin origin) { argument
156 if (origin == null) {
157 throw new IllegalArgumentException("Cookie origin may not be null");
159 int port = origin.getPort();
H A DRFC2965CommentUrlAttributeHandler.java63 public void validate(final Cookie cookie, final CookieOrigin origin) argument
67 public boolean match(final Cookie cookie, final CookieOrigin origin) { argument
H A DRFC2965DiscardAttributeHandler.java63 public void validate(final Cookie cookie, final CookieOrigin origin) argument
67 public boolean match(final Cookie cookie, final CookieOrigin origin) { argument
/external/chromium_org/chrome/browser/media/
H A Ddesktop_streams_registry.cc36 const GURL& origin,
46 stream.origin = origin;
63 const GURL& origin,
70 // the same origin and the same renderer.
74 origin != it->second.origin) {
33 RegisterStream( int render_process_id, int render_frame_id, const GURL& origin, const content::DesktopMediaID& source, const std::string& extension_name) argument
59 RequestMediaForStreamId( const std::string& id, int render_process_id, int render_frame_id, const GURL& origin, std::string* extension_name) argument
/external/chromium_org/chrome/browser/sync_file_system/
H A Dsyncable_file_system_util.cc55 GURL GetSyncableFileSystemRootURI(const GURL& origin) { argument
57 storage::GetExternalFileSystemRootURIString(origin, kSyncableMountName));
60 FileSystemURL CreateSyncableFileSystemURL(const GURL& origin, argument
67 origin, kSyncableMountName, path_for_url);
74 syncable_url.origin(),
84 GetSyncableFileSystemRootURI(url.origin()).spec() +
H A Dsyncable_file_system_util.h31 // Returns the root URI of the syncable filesystem for |origin|.
32 GURL GetSyncableFileSystemRootURI(const GURL& origin);
35 // |origin|.
38 // origin: 'http://www.example.com/',
41 storage::FileSystemURL CreateSyncableFileSystemURL(const GURL& origin,
55 // origin() returns 'http://www.example.com/',
/external/chromium_org/chrome/browser/ui/views/autofill/
H A Dtooltip_icon.cc24 gfx::Point origin = local_bounds.CenterPoint(); local
25 origin.Offset(-pref_size.width() / 2, -pref_size.height() / 2);
26 return gfx::Insets(origin.y(),
27 origin.x(),
28 local_bounds.bottom() - (origin.y() + pref_size.height()),
29 local_bounds.right() - (origin.x() + pref_size.width()));
/external/chromium_org/content/browser/dom_storage/
H A Ddom_storage_namespace.cc65 DOMStorageArea* DOMStorageNamespace::OpenStorageArea(const GURL& origin) { argument
67 return alias_master_namespace_->OpenStorageArea(origin);
68 if (AreaHolder* holder = GetAreaHolder(origin)) {
74 area = new DOMStorageArea(origin, directory_, task_runner_.get());
77 namespace_id_, persistent_namespace_id_, origin,
80 areas_[origin] = AreaHolder(area, 1);
85 AreaHolder* holder = GetAreaHolder(area->origin());
101 DOMStorageArea* DOMStorageNamespace::GetOpenStorageArea(const GURL& origin) { argument
103 return alias_master_namespace_->GetOpenStorageArea(origin);
104 AreaHolder* holder = GetAreaHolder(origin);
166 DeleteLocalStorageOrigin(const GURL& origin) argument
181 DeleteSessionStorageOrigin(const GURL& origin) argument
242 GetAreaHolder(const GURL& origin) argument
[all...]
H A Ddom_storage_namespace.h26 // Container for the set of per-origin Areas.
58 // Returns the storage area for the given origin,
61 DOMStorageArea* OpenStorageArea(const GURL& origin);
64 // Returns the area for |origin| if it's open, otherwise NULL.
65 DOMStorageArea* GetOpenStorageArea(const GURL& origin);
77 void DeleteLocalStorageOrigin(const GURL& origin);
78 void DeleteSessionStorageOrigin(const GURL& origin);
114 GURL origin; member in struct:content::DOMStorageNamespace::TransactionRecord
152 AreaHolder* GetAreaHolder(const GURL& origin);
/external/chromium_org/content/renderer/media/
H A Dwebrtc_identity_service.cc15 const GURL& origin,
21 origin(origin),
47 const GURL& origin,
55 origin,
128 request_info.origin,
13 RequestInfo( int request_id, const GURL& origin, const std::string& identity_name, const std::string& common_name, const SuccessCallback& success_callback, const FailureCallback& failure_callback) argument
46 RequestIdentity( const GURL& origin, const std::string& identity_name, const std::string& common_name, const SuccessCallback& success_callback, const FailureCallback& failure_callback) argument
/external/chromium_org/net/http/
H A Dhttp_auth_handler_basic_unittest.cc33 GURL origin("http://www.example.com");
39 challenge, HttpAuth::AUTH_SERVER, origin, BoundNetLog(), &basic));
86 GURL origin("http://www.example.com");
90 tests[0].challenge, HttpAuth::AUTH_SERVER, origin,
185 GURL origin("http://www.example.com");
190 challenge, HttpAuth::AUTH_SERVER, origin, BoundNetLog(), &basic);
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebSecurityOrigin.cpp51 WebSecurityOrigin WebSecurityOrigin::createFromString(const WebString& origin) argument
53 return WebSecurityOrigin(SecurityOrigin::createFromString(origin));
138 WebSecurityOrigin::WebSecurityOrigin(const WTF::PassRefPtr<SecurityOrigin>& origin) argument
139 : m_private(static_cast<WebSecurityOriginPrivate*>(origin.leakRef()))
143 WebSecurityOrigin& WebSecurityOrigin::operator=(const WTF::PassRefPtr<SecurityOrigin>& origin) argument
145 assign(static_cast<WebSecurityOriginPrivate*>(origin.leakRef()));
/external/chromium_org/ui/views/bubble/
H A Dbubble_window_targeter_unittest.cc95 ui::MouseEvent move1(ui::ET_MOUSE_MOVED, bubble_bounds.origin(),
96 bubble_bounds.origin(), ui::EF_NONE, ui::EF_NONE);
101 ui::MouseEvent move1(ui::ET_MOUSE_MOVED, bubble_bounds.origin(),
102 bubble_bounds.origin(), ui::EF_NONE, ui::EF_NONE);
110 ui::MouseEvent move1(ui::ET_MOUSE_MOVED, bubble_bounds.origin(),
111 bubble_bounds.origin(), ui::EF_NONE, ui::EF_NONE);
/external/chromium_org/chrome/browser/ui/panels/
H A Dpanel_drag_browsertest.cc38 // Drag |panel| from its origin by the offset |delta|.
42 gfx::Point mouse_location(panel->GetBounds().origin());
48 // Drag |panel| from its origin to |new_mouse_location|.
53 gfx::Point mouse_location(panel->GetBounds().origin());
54 panel_testing->PressLeftMouseButtonTitlebar(panel->GetBounds().origin());
200 gfx::Point mouse_location = panel_old_bounds.origin();
214 mouse_location = panel_old_bounds.origin();
228 mouse_location = panel_old_bounds.origin();
242 mouse_location = panel_old_bounds.origin();
256 mouse_location = panel_old_bounds.origin();
784 gfx::Point origin = panel->GetBounds().origin(); local
[all...]
/external/chromium_org/chrome/browser/content_settings/
H A Dlocal_shared_objects_container.cc82 const GURL& origin) const {
85 // Count all cookies that have the same domain as the provided |origin|. This
87 // to be a third party regarding the domain of the provided |origin|.
88 // E.g. if the origin is "http://foo.com" then all cookies with domain foo.com,
110 if (SameDomainOrHost(origin, domain_url))
115 // Count local storages for the domain of the given |origin|.
121 if (SameDomainOrHost(origin, *it))
125 // Count session storages for the domain of the given |origin|.
130 if (SameDomainOrHost(origin, *it))
134 // Count indexed dbs for the domain of the given |origin|
[all...]
/external/chromium_org/storage/browser/quota/
H A Dusage_tracker.h47 const GURL& origin,
57 const GURL& origin,
101 typedef base::Callback<void(const GURL& origin,
115 void UpdateUsageCache(const GURL& origin, int64 delta);
120 bool IsUsageCacheEnabledForOrigin(const GURL& origin) const;
121 void SetUsageCacheEnabled(const GURL& origin, bool enabled);
157 const GURL& origin,
160 void DidGetHostUsageAfterUpdate(const GURL& origin, int64 usage);
164 void AddCachedOrigin(const GURL& origin, int64 usage);
169 bool GetCachedOriginUsage(const GURL& origin, int6
[all...]
/external/chromium_org/tools/gn/
H A Dvalue.cc18 Value::Value(const ParseNode* origin, Type t) argument
22 origin_(origin) {
25 Value::Value(const ParseNode* origin, bool bool_val) argument
29 origin_(origin) {
32 Value::Value(const ParseNode* origin, int64 int_val) argument
36 origin_(origin) {
39 Value::Value(const ParseNode* origin, std::string str_val) argument
44 origin_(origin) {
48 Value::Value(const ParseNode* origin, const char* str_val) argument
53 origin_(origin) {
56 Value(const ParseNode* origin, scoped_ptr<Scope> scope) argument
[all...]
/external/chromium_org/chrome/browser/ui/passwords/
H A Dpassword_manager_presenter_unittest.cc61 void AddPasswordEntry(const GURL& origin,
64 void AddPasswordException(const GURL& origin);
76 const GURL& origin,
80 form->origin = origin;
89 void PasswordManagerPresenterTest::AddPasswordException(const GURL& origin) { argument
91 form->origin = origin;
75 AddPasswordEntry( const GURL& origin, const std::string& user_name, const std::string& password) argument
/external/chromium_org/components/autofill/content/common/
H A Dautofill_param_traits_macros.h19 IPC_STRUCT_TRAITS_MEMBER(origin)
31 IPC_STRUCT_TRAITS_MEMBER(origin)
/external/chromium_org/content/browser/appcache/
H A Dappcache_storage.cc99 const GURL& origin, int64 new_usage) {
101 int64 old_usage = usage_map_[origin];
103 usage_map_[origin] = new_usage;
105 usage_map_.erase(origin);
109 origin,
129 void AppCacheStorage::NotifyStorageAccessed(const GURL& origin) { argument
131 usage_map_.find(origin) != usage_map_.end())
134 origin,
98 UpdateUsageMapAndNotify( const GURL& origin, int64 new_usage) argument

Completed in 414 milliseconds

1234567891011>>