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

Unified Diff: webkit/browser/appcache/appcache.h

Issue 22314003: NavigationController prototype Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: NavController prototype - chrome side Created 7 years, 3 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/worker/worker_webkitplatformsupport_impl.cc ('k') | webkit/browser/appcache/appcache.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/browser/appcache/appcache.h
diff --git a/webkit/browser/appcache/appcache.h b/webkit/browser/appcache/appcache.h
index ea13722a07b78e0cb0a55c5c243e857d30535f3b..c1d241214fecdbc3ee40b99f3551fa678040c28a 100644
--- a/webkit/browser/appcache/appcache.h
+++ b/webkit/browser/appcache/appcache.h
@@ -74,7 +74,7 @@ class WEBKIT_STORAGE_BROWSER_EXPORT AppCache
// Do not store the returned ptrs, they're owned by 'this'.
AppCacheExecutableHandler* GetExecutableHandler(int64 response_id);
AppCacheExecutableHandler* GetOrCreateExecutableHandler(
- int64 response_id, net::IOBuffer* handler_source);
+ int64 response_id, const std::string& raw_handler_source);
// Returns the URL of the resource used as entry for 'namespace_url'.
GURL GetFallbackEntryUrl(const GURL& namespace_url) const {
@@ -139,6 +139,9 @@ class WEBKIT_STORAGE_BROWSER_EXPORT AppCache
const NamespaceVector& namespaces,
const GURL& url);
+ const Namespace* FindInterceptNamespace(const GURL& url) {
+ return FindNamespace(intercept_namespaces_, url);
+ }
private:
friend class AppCacheGroup;
friend class AppCacheHost;
@@ -152,9 +155,6 @@ class WEBKIT_STORAGE_BROWSER_EXPORT AppCache
void set_owning_group(AppCacheGroup* group) { owning_group_ = group; }
// FindResponseForRequest helpers
- const Namespace* FindInterceptNamespace(const GURL& url) {
- return FindNamespace(intercept_namespaces_, url);
- }
const Namespace* FindFallbackNamespace(const GURL& url) {
return FindNamespace(fallback_namespaces_, url);
}
« no previous file with comments | « content/worker/worker_webkitplatformsupport_impl.cc ('k') | webkit/browser/appcache/appcache.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698