Index: webkit/appcache/appcache_service.h |
diff --git a/webkit/appcache/appcache_service.h b/webkit/appcache/appcache_service.h |
index f1f8c0ba74c8af680c884d4c6cbd4a588c9daf55..6a5cea1e04ab338757a613fe07e085b0fa72b996 100644 |
--- a/webkit/appcache/appcache_service.h |
+++ b/webkit/appcache/appcache_service.h |
@@ -43,9 +43,12 @@ class AppCachePolicy; |
struct APPCACHE_EXPORT AppCacheInfoCollection |
: public base::RefCountedThreadSafe<AppCacheInfoCollection> { |
AppCacheInfoCollection(); |
- virtual ~AppCacheInfoCollection(); |
std::map<GURL, AppCacheInfoVector> infos_by_origin; |
+ |
+ private: |
+ friend class base::RefCountedThreadSafe<AppCacheInfoCollection>; |
+ virtual ~AppCacheInfoCollection(); |
}; |
// Class that manages the application cache service. Sends notifications |