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

1234567891011>>

/external/chromium_org/webkit/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, quota::kStorageTypeTemporary,
127 void AppCacheStorage::NotifyStorageAccessed(const GURL& origin) { argument
129 usage_map_.find(origin) != usage_map_.end())
132 origin, quota::kStorageTypeTemporary);
98 UpdateUsageMapAndNotify( const GURL& origin, int64 new_usage) argument
/external/chromium_org/webkit/common/database/
H A Ddatabase_identifier.h18 const GURL& origin);
25 static DatabaseIdentifier CreateFromOrigin(const GURL& origin);
/external/skia/src/utils/
H A DSkCanvasStack.h20 void pushCanvas(SkCanvas* canvas, const SkIPoint& origin);
43 SkIPoint origin; member in struct:SkCanvasStack::CanvasData
/external/smack/src/org/xbill/DNS/
H A DSingleNameBase.java42 rdataFromString(Tokenizer st, Name origin) throws IOException { argument
43 singleName = st.getName(origin);
/external/chromium_org/chrome/browser/prerender/
H A Dprerender_manager.cc219 PrerenderedWebContentsData(Origin origin) : origin(origin) { argument
223 WouldBePrerenderedWebContentsData(Origin origin) argument
224 : origin(origin),
319 Origin origin = ORIGIN_LINK_REL_PRERENDER_CROSSDOMAIN;
332 origin = ORIGIN_LINK_REL_PRERENDER_SAMEDOMAIN;
363 origin, url, referrer, size));
370 return AddPrerender(origin, process_i
669 Origin origin = ORIGIN_NONE; local
805 MarkWebContentsAsPrerendered(WebContents* web_contents, Origin origin) argument
814 MarkWebContentsAsWouldBePrerendered( WebContents* web_contents, Origin origin) argument
868 HasRecentlyBeenNavigatedTo(Origin origin, const GURL& url) argument
943 RecordFinalStatusWithMatchCompleteStatus( Origin origin, uint8 experiment_id, PrerenderContents::MatchCompleteStatus mc_status, FinalStatus final_status) const argument
1078 AddPrerender( Origin origin, int process_id, const GURL& url_arg, const content::Referrer& referrer, const gfx::Size& size, SessionStorageNamespace* session_storage_namespace) argument
1258 CreatePrerenderContents( const GURL& url, const content::Referrer& referrer, Origin origin, uint8 experiment_id) argument
1404 RecordFinalStatus(Origin origin, uint8 experiment_id, FinalStatus final_status) const argument
[all...]
H A Dprerender_manager.h207 // is prerendering a page. The optional parameter |origin| is an output
211 Origin* origin) const;
224 Origin origin);
226 Origin origin);
230 // been swapped in. The optional parameter |origin| is an output parameter
234 Origin* origin) const;
236 Origin* origin) const;
239 bool HasRecentlyBeenNavigatedTo(Origin origin, const GURL& url);
273 Origin origin,
412 // PrerenderedWebContentsData so that we can track the origin o
417 Origin origin; member in struct:prerender::PrerenderManager::PrerenderedWebContentsData
438 Origin origin; member in struct:prerender::PrerenderManager::WouldBePrerenderedWebContentsData
[all...]
/external/chromium/chrome/browser/
H A Ddesktop_notification_handler.h28 void OnRequestPermission(const GURL& origin, int callback_id);
H A Dbrowsing_data_indexed_db_helper_browsertest.cc55 const GURL origin("http://host1:1/");
62 helper->AddIndexedDB(origin, description);
63 helper->AddIndexedDB(origin, description);
H A Dmock_browsing_data_database_helper.cc28 const std::string& origin,
30 std::string key = origin + ":" + name;
32 last_deleted_origin_ = origin;
27 DeleteDatabase( const std::string& origin, const std::string& name) argument
/external/chromium/chrome/browser/ui/cocoa/
H A Dcocoa_test_helper.h143 EXPECT_TRUE(CGFLOAT_EQ(expected.origin.x, actual.origin.x) && \
144 CGFLOAT_EQ(expected.origin.y, actual.origin.y) && \
/external/chromium/net/http/
H A Dhttp_auth_handler_factory.h72 // If |origin| does not match the authentication method's filters for
74 // NOTE: This will apply to ALL |origin| values if the filters are empty.
79 const GURL& origin,
92 const GURL& origin,
104 const GURL& origin,
188 const GURL& origin,
/external/chromium_org/chrome/browser/notifications/
H A Ddesktop_notifications_unittest.h86 void AllowOrigin(const GURL& origin) { argument
87 service_->GrantPermission(origin);
90 void DenyOrigin(const GURL& origin) { argument
91 service_->DenyPermission(origin);
H A Dnotification_options_menu_model.cc137 const GURL& origin = notification.origin_url(); local
139 if (origin.SchemeIs(extensions::kExtensionScheme)) {
143 extension_service->extensions()->GetExtensionOrAppByURL(origin);
186 const GURL& origin = notification.origin_url(); local
190 if (origin.SchemeIs(extensions::kExtensionScheme)) {
194 extension_service->extensions()->GetExtensionOrAppByURL(origin);
202 if (service->GetContentSetting(origin) == CONTENT_SETTING_ALLOW) {
242 const GURL& origin = balloon_->notification().origin_url(); local
245 if (service->GetContentSetting(origin) == CONTENT_SETTING_ALLOW)
246 service->DenyPermission(origin);
[all...]
/external/chromium_org/content/public/browser/
H A Dindexed_db_info.h17 IndexedDBInfo(const GURL& origin,
/external/chromium_org/content/renderer/dom_storage/
H A Ddom_storage_dispatcher.cc102 int64 namespace_id, const GURL& origin);
105 int64 namespace_id, const GURL& origin);
154 std::string GetCachedAreaKey(int64 namespace_id, const GURL& origin) { argument
155 return base::Int64ToString(namespace_id) + origin.spec();
178 int64 namespace_id, const GURL& origin) {
179 std::string key = GetCachedAreaKey(namespace_id, origin);
185 new DOMStorageCachedArea(namespace_id, origin, this);
192 std::string key = GetCachedAreaKey(area->namespace_id(), area->origin());
203 int64 namespace_id, const GURL& origin) {
204 std::string key = GetCachedAreaKey(namespace_id, origin);
177 OpenCachedArea( int64 namespace_id, const GURL& origin) argument
202 LookupCachedArea( int64 namespace_id, const GURL& origin) argument
266 OpenCachedArea( int connection_id, int64 namespace_id, const GURL& origin) argument
[all...]
H A Dwebstoragenamespace_impl.h23 const WebKit::WebString& origin);
/external/chromium_org/net/http/
H A Dhttp_auth_handler_factory.h71 // If |origin| does not match the authentication method's filters for
73 // NOTE: This will apply to ALL |origin| values if the filters are empty.
78 const GURL& origin,
91 const GURL& origin,
103 const GURL& origin,
187 const GURL& origin,
/external/chromium_org/net/websockets/
H A Dwebsocket_stream.cc22 const GURL& origin,
19 CreateAndConnectStream( const GURL& socket_url, const std::vector<std::string>& requested_subprotocols, const GURL& origin, URLRequestContext* url_request_context, const BoundNetLog& net_log, scoped_ptr<ConnectDelegate> connect_delegate) argument
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DFileSystemModel.js103 * @param {string} origin
107 _requestFileSystemRoot: function(origin, type, callback)
124 FileSystemAgent.requestFileSystemRoot(origin, type, innerCallback.bind(this));
149 * @param {string} origin
155 _fileSystemRootReceived: function(origin, type, store, errorCode, backendRootEntry)
157 if (!errorCode && backendRootEntry && this._fileSystemsForOrigin[origin] === store) {
158 var fileSystem = new WebInspector.FileSystemModel.FileSystem(this, origin, type, backendRootEntry);
338 var origin = fileSystem.origin;
340 if (this._fileSystemsForOrigin[origin]
[all...]
/external/chromium_org/third_party/WebKit/public/web/
H A DWebPasswordFormData.h71 WebURL origin; member in struct:WebKit::WebPasswordFormData
H A DWebSpeechInputController.h49 virtual bool startRecognition(int requestId, const WebRect& elementRect, const WebString& language, const WebString& grammar, const WebSecurityOrigin& origin) argument
/external/chromium_org/ui/base/test/
H A Dui_cocoa_test_helper.h141 EXPECT_TRUE(CGFLOAT_EQ(expected.origin.x, actual.origin.x) && \
142 CGFLOAT_EQ(expected.origin.y, actual.origin.y) && \
/external/chromium/chrome/browser/notifications/
H A Dnotification_options_menu_model.cc116 const GURL& origin = notification.origin_url(); local
118 if (origin.SchemeIs(chrome::kExtensionScheme)) {
121 const Extension* extension = ext_service->GetExtensionByURL(origin);
162 const GURL& origin = notification.origin_url(); local
166 if (origin.SchemeIs(chrome::kExtensionScheme)) {
169 const Extension* extension = ext_service->GetExtensionByURL(origin);
179 if (service->GetContentSetting(origin) == CONTENT_SETTING_ALLOW) {
218 const GURL& origin = balloon_->notification().origin_url(); local
221 if (service->GetContentSetting(origin) == CONTENT_SETTING_ALLOW)
222 service->DenyPermission(origin);
[all...]
/external/chromium_org/chrome/browser/browsing_data/
H A Dmock_browsing_data_database_helper.cc23 const std::string& origin,
25 std::string key = origin + ":" + name;
27 last_deleted_origin_ = origin;
22 DeleteDatabase( const std::string& origin, const std::string& name) argument
H A Dmock_browsing_data_indexed_db_helper.cc23 const GURL& origin) {
24 CHECK(origins_.find(origin) != origins_.end());
25 origins_[origin] = false;
22 DeleteIndexedDB( const GURL& origin) argument

Completed in 1178 milliseconds

1234567891011>>