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

Unified Diff: webkit/browser/appcache/appcache_service.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 | « webkit/browser/appcache/appcache_response.cc ('k') | webkit/browser/appcache/appcache_service.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/browser/appcache/appcache_service.h
diff --git a/webkit/browser/appcache/appcache_service.h b/webkit/browser/appcache/appcache_service.h
index 92edf5c4c884994729b5da6439098b2c4ebdaaea..7efeb849aaf160f0a0c1512c9af2fd5938a9b039 100644
--- a/webkit/browser/appcache/appcache_service.h
+++ b/webkit/browser/appcache/appcache_service.h
@@ -122,12 +122,12 @@ class WEBKIT_STORAGE_BROWSER_EXPORT AppCacheService {
// will result in an error response.
// The service does NOT assume ownership of the factory, it is the callers
// responsibility to ensure that the pointer remains valid while set.
- AppCacheExecutableHandlerFactory* handler_factory() const {
- return handler_factory_;
+ AppCacheExecutableHandlerFactory* executable_handler_factory() const {
+ return executable_handler_factory_;
}
- void set_handler_factory(
+ void set_executable_handler_factory(
AppCacheExecutableHandlerFactory* factory) {
- handler_factory_ = factory;
+ executable_handler_factory_ = factory;
}
quota::SpecialStoragePolicy* special_storage_policy() const {
@@ -174,7 +174,7 @@ class WEBKIT_STORAGE_BROWSER_EXPORT AppCacheService {
AppCachePolicy* appcache_policy_;
AppCacheQuotaClient* quota_client_;
- AppCacheExecutableHandlerFactory* handler_factory_;
+ AppCacheExecutableHandlerFactory* executable_handler_factory_;
scoped_ptr<AppCacheStorage> storage_;
scoped_refptr<quota::SpecialStoragePolicy> special_storage_policy_;
scoped_refptr<quota::QuotaManagerProxy> quota_manager_proxy_;
« no previous file with comments | « webkit/browser/appcache/appcache_response.cc ('k') | webkit/browser/appcache/appcache_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698