Home
last modified time | relevance | path

Searched refs:manifestURL (Results 1 – 15 of 15) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
DApplicationCacheModel.js91 _manifestForFrameLoaded: function(frameId, error, manifestURL) argument
98 if (!manifestURL)
114 …ManifestUpdated(framesWithManifests[i].frameId, framesWithManifests[i].manifestURL, framesWithMani…
122 _frameManifestUpdated: function(frameId, manifestURL, status) argument
129 if (!manifestURL)
132 … if (this._manifestURLsByFrame[frameId] && manifestURL !== this._manifestURLsByFrame[frameId])
139 this._manifestURLsByFrame[frameId] = manifestURL;
155 var manifestURL = this._manifestURLsByFrame[frameId];
193 _statusUpdated: function(frameId, manifestURL, status) argument
195 this._frameManifestUpdated(frameId, manifestURL, status);
[all …]
/external/chromium_org/third_party/WebKit/Source/core/inspector/
DInspectorApplicationCacheAgent.cpp89 String manifestURL = info.m_manifest.string(); in updateApplicationCacheStatus() local
90 …m_frontend->applicationCacheStatusUpdated(m_pageAgent->frameId(frame), manifestURL, static_cast<in… in updateApplicationCacheStatus()
112 String manifestURL = info.m_manifest.string(); in getFramesWithManifests() local
113 if (!manifestURL.isEmpty()) { in getFramesWithManifests()
116 .setManifestURL(manifestURL) in getFramesWithManifests()
132 …cheAgent::getManifestForFrame(ErrorString* errorString, const String& frameId, String* manifestURL) in getManifestForFrame() argument
139 *manifestURL = info.m_manifest.string(); in getManifestForFrame()
DInspectorApplicationCacheAgent.h64 …virtual void getManifestForFrame(ErrorString*, const String& frameId, String* manifestURL) OVERRID…
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/resources/
DResourcesPanel.js672 var manifestURL = this._applicationCacheModel.frameManifestURL(frameId);
675 var manifestTreeElement = this._applicationCacheManifestElements[manifestURL]
677 … manifestTreeElement = new WebInspector.ApplicationCacheManifestTreeElement(this, manifestURL);
679 this._applicationCacheManifestElements[manifestURL] = manifestTreeElement;
682 …r frameTreeElement = new WebInspector.ApplicationCacheFrameTreeElement(this, frameId, manifestURL);
695 var manifestURL = frameTreeElement.manifestURL;
700 var manifestTreeElement = this._applicationCacheManifestElements[manifestURL];
704 delete this._applicationCacheManifestElements[manifestURL];
721 for (var manifestURL in this._applicationCacheViews)
722 this._applicationCacheViews[manifestURL].updateNetworkState(isNowOnline);
[all …]
DApplicationCacheItemsView.js159 if (!applicationCache || !applicationCache.manifestURL) {
173 this._manifest = applicationCache.manifestURL;
/external/chromium_org/third_party/WebKit/public/platform/
DWebApplicationCacheHost.h94 virtual bool selectCacheWithManifest(const WebURL& manifestURL) { return true; } in selectCacheWithManifest() argument
109 WebURL manifestURL; // Empty if there is no associated cache. member
/external/chromium_org/third_party/WebKit/Source/core/loader/appcache/
DApplicationCacheHost.cpp114 void ApplicationCacheHost::selectCacheWithManifest(const KURL& manifestURL) in selectCacheWithManifest() argument
116 if (m_host && !m_host->selectCacheWithManifest(manifestURL)) { in selectCacheWithManifest()
187 …return CacheInfo(webInfo.manifestURL, webInfo.creationTime, webInfo.updateTime, webInfo.totalSize); in applicationCacheInfo()
DApplicationCacheHost.h112 void selectCacheWithManifest(const KURL& manifestURL);
/external/chromium_org/chrome/browser/ui/cocoa/content_settings/
Dcookie_details.h161 - (NSString*)manifestURL;
196 - (id)initWithAppCacheManifestURL:(const std::string&)manifestURL;
Dcookie_details_unittest.mm120 [details.get() manifestURL]);
217 std::string manifestURL("http://html5demos.com/html5demo.manifest");
219 initWithAppCacheManifestURL:manifestURL.c_str()]);
223 [details.get() manifestURL]);
Dcookie_details.mm109 - (NSString*)manifestURL { method
233 - (id)initWithAppCacheManifestURL:(const std::string&)manifestURL {
237 manifestURL_.reset([base::SysUTF8ToNSString(manifestURL) retain]);
/external/chromium_org/content/worker/
Dworker_webapplicationcachehost_impl.h31 virtual bool selectCacheWithManifest(const blink::WebURL& manifestURL);
/external/chromium_org/content/child/appcache/
Dweb_application_cache_host_impl.h47 virtual bool selectCacheWithManifest(const blink::WebURL& manifestURL); in NON_EXPORTED_BASE()
Dweb_application_cache_host_impl.cc297 info->manifestURL = cache_info_.manifest_url; in getAssociatedCacheInfo()
/external/chromium_org/content/renderer/shared_worker/
Dembedded_shared_worker_stub.cc50 virtual bool selectCacheWithManifest(const blink::WebURL& manifestURL) { in selectCacheWithManifest() argument