Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1820)

Unified Diff: content/worker/worker_webapplicationcachehost_impl.h

Issue 6667057: Loading from the "most appropiate" appcache. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/common/appcache_messages.h ('k') | content/worker/worker_webapplicationcachehost_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/worker/worker_webapplicationcachehost_impl.h
===================================================================
--- content/worker/worker_webapplicationcachehost_impl.h (revision 78411)
+++ content/worker/worker_webapplicationcachehost_impl.h (working copy)
@@ -36,15 +36,18 @@
// Main resource loading is different for workers. The resource is
// loaded by the creator of the worker rather than the worker itself.
- virtual void willStartMainResourceRequest(WebKit::WebURLRequest&) {}
+ // These overrides are stubbed out.
+ virtual void willStartMainResourceRequest(
+ WebKit::WebURLRequest&, const WebKit::WebFrame*);
virtual void didReceiveResponseForMainResource(
- const WebKit::WebURLResponse&) {}
- virtual void didReceiveDataForMainResource(const char* data, int len) {}
- virtual void didFinishLoadingMainResource(bool success) {}
+ const WebKit::WebURLResponse&);
+ virtual void didReceiveDataForMainResource(const char* data, int len);
+ virtual void didFinishLoadingMainResource(bool success);
// Cache selection is also different for workers. We know at construction
// time what cache to select and do so then.
- virtual void selectCacheWithoutManifest() {}
+ // These overrides are stubbed out.
+ virtual void selectCacheWithoutManifest();
virtual bool selectCacheWithManifest(const WebKit::WebURL& manifestURL);
};
« no previous file with comments | « content/common/appcache_messages.h ('k') | content/worker/worker_webapplicationcachehost_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698