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_; |