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

Unified Diff: content/test/appcache_test_helper.h

Issue 344493002: Move all remaining appcache-related code to content namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 6 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
Index: content/test/appcache_test_helper.h
diff --git a/content/test/appcache_test_helper.h b/content/test/appcache_test_helper.h
index f93424ba59d2534c652d2b429cfcc29899f4b66b..3b6f6c94c07e4ee3883fe6db774a4e55f84caccc 100644
--- a/content/test/appcache_test_helper.h
+++ b/content/test/appcache_test_helper.h
@@ -7,9 +7,9 @@
#include <set>
-#include "webkit/browser/appcache/appcache_storage.h"
+#include "content/browser/appcache/appcache_storage.h"
-namespace appcache {
+namespace content {
class AppCacheServiceImpl;
}
@@ -17,19 +17,19 @@ namespace content {
// Helper class for inserting data into a ChromeAppCacheService and reading it
// back.
-class AppCacheTestHelper : public appcache::AppCacheStorage::Delegate {
+class AppCacheTestHelper : public AppCacheStorage::Delegate {
public:
AppCacheTestHelper();
virtual ~AppCacheTestHelper();
- void AddGroupAndCache(appcache::AppCacheServiceImpl* appcache_service,
+ void AddGroupAndCache(AppCacheServiceImpl* appcache_service,
const GURL& manifest_url);
- void GetOriginsWithCaches(appcache::AppCacheServiceImpl* appcache_service,
+ void GetOriginsWithCaches(AppCacheServiceImpl* appcache_service,
std::set<GURL>* origins);
private:
virtual void OnGroupAndNewestCacheStored(
- appcache::AppCacheGroup* group,
- appcache::AppCache* newest_cache,
+ AppCacheGroup* group,
+ AppCache* newest_cache,
bool success,
bool would_exceed_quota) OVERRIDE;
void OnGotAppCacheInfo(int rv);
@@ -37,7 +37,7 @@ class AppCacheTestHelper : public appcache::AppCacheStorage::Delegate {
int group_id_;
int appcache_id_;
int response_id_;
- scoped_refptr<appcache::AppCacheInfoCollection> appcache_info_;
+ scoped_refptr<AppCacheInfoCollection> appcache_info_;
std::set<GURL>* origins_; // not owned
DISALLOW_COPY_AND_ASSIGN(AppCacheTestHelper);

Powered by Google App Engine
This is Rietveld 408576698