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); |
} |