Upstream version 9.37.197.0
[platform/framework/web/crosswalk.git] / src / webkit / browser / appcache / appcache_storage.h
index caf68e2..41bbd55 100644 (file)
@@ -34,7 +34,7 @@ class AppCacheEntry;
 class AppCacheGroup;
 class AppCacheResponseReader;
 class AppCacheResponseWriter;
-class AppCacheService;
+class AppCacheServiceImpl;
 struct AppCacheInfoCollection;
 struct HttpResponseInfoIOBuffer;
 
@@ -69,7 +69,7 @@ class WEBKIT_STORAGE_BROWSER_EXPORT AppCacheStorage {
         AppCacheResponseInfo* response_info, int64 response_id) {}
 
     // If no response is found, entry.response_id() and
-    // fallback_entry.response_id() will be kNoResponseId.
+    // fallback_entry.response_id() will be kAppCacheNoResponseId.
     // If the response is the entry for an intercept or fallback
     // namespace, the url of the namespece entry is returned.
     // If a response is found, the cache id and manifest url of the
@@ -83,7 +83,7 @@ class WEBKIT_STORAGE_BROWSER_EXPORT AppCacheStorage {
     virtual ~Delegate() {}
   };
 
-  explicit AppCacheStorage(AppCacheService* service);
+  explicit AppCacheStorage(AppCacheServiceImpl* service);
   virtual ~AppCacheStorage();
 
   // Schedules a task to retrieve basic info about all groups and caches
@@ -199,7 +199,7 @@ class WEBKIT_STORAGE_BROWSER_EXPORT AppCacheStorage {
   const UsageMap* usage_map() { return &usage_map_; }
 
   // Simple ptr back to the service object that owns us.
-  AppCacheService* service() { return service_; }
+  AppCacheServiceImpl* service() { return service_; }
 
  protected:
   friend class content::AppCacheQuotaClientTest;
@@ -312,7 +312,7 @@ class WEBKIT_STORAGE_BROWSER_EXPORT AppCacheStorage {
 
   UsageMap usage_map_;  // maps origin to usage
   AppCacheWorkingSet working_set_;
-  AppCacheService* service_;
+  AppCacheServiceImpl* service_;
   DelegateReferenceMap delegate_references_;
   PendingResponseInfoLoads pending_info_loads_;