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

Unified Diff: webkit/browser/appcache/appcache_storage.h

Issue 214233005: Move mock_quota_manager and friends from webkit/ to content/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: nits Created 6 years, 8 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 | « content/content_tests.gypi ('k') | webkit/browser/appcache/appcache_storage_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/browser/appcache/appcache_storage.h
diff --git a/webkit/browser/appcache/appcache_storage.h b/webkit/browser/appcache/appcache_storage.h
index a6bdd0e52f03f90e1c38386c6f6c486fedf14cc5..81144617fdb6aaad1e73a806dbc4c3fa9bc70276 100644
--- a/webkit/browser/appcache/appcache_storage.h
+++ b/webkit/browser/appcache/appcache_storage.h
@@ -19,6 +19,12 @@
class GURL;
+namespace content {
+FORWARD_DECLARE_TEST(AppCacheStorageTest, DelegateReferences);
+FORWARD_DECLARE_TEST(AppCacheStorageTest, UsageMap);
+class AppCacheStorageTest;
+}
+
namespace appcache {
class AppCache;
@@ -196,7 +202,7 @@ class WEBKIT_STORAGE_BROWSER_EXPORT AppCacheStorage {
protected:
friend class AppCacheQuotaClientTest;
friend class AppCacheResponseTest;
- friend class AppCacheStorageTest;
+ friend class content::AppCacheStorageTest;
// Helper to call a collection of delegates.
#define FOR_EACH_DELEGATE(delegates, func_and_args) \
@@ -311,8 +317,8 @@ class WEBKIT_STORAGE_BROWSER_EXPORT AppCacheStorage {
// The set of last ids must be retrieved from storage prior to being used.
static const int64 kUnitializedId;
- FRIEND_TEST_ALL_PREFIXES(AppCacheStorageTest, DelegateReferences);
- FRIEND_TEST_ALL_PREFIXES(AppCacheStorageTest, UsageMap);
+ FRIEND_TEST_ALL_PREFIXES(content::AppCacheStorageTest, DelegateReferences);
+ FRIEND_TEST_ALL_PREFIXES(content::AppCacheStorageTest, UsageMap);
DISALLOW_COPY_AND_ASSIGN(AppCacheStorage);
};
« no previous file with comments | « content/content_tests.gypi ('k') | webkit/browser/appcache/appcache_storage_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698