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

Unified Diff: content/browser/appcache/appcache_disk_cache.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/browser/appcache/appcache_disk_cache.h
diff --git a/webkit/browser/appcache/appcache_disk_cache.h b/content/browser/appcache/appcache_disk_cache.h
similarity index 89%
rename from webkit/browser/appcache/appcache_disk_cache.h
rename to content/browser/appcache/appcache_disk_cache.h
index d9f27d0fb09fce178f9f49cb95a062cdeb0b7590..3d51889ad1586bffc0c90495bd790ce95384e6c6 100644
--- a/webkit/browser/appcache/appcache_disk_cache.h
+++ b/content/browser/appcache/appcache_disk_cache.h
@@ -2,22 +2,22 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef WEBKIT_BROWSER_APPCACHE_APPCACHE_DISK_CACHE_H_
-#define WEBKIT_BROWSER_APPCACHE_APPCACHE_DISK_CACHE_H_
+#ifndef CONTENT_BROWSER_APPCACHE_APPCACHE_DISK_CACHE_H_
+#define CONTENT_BROWSER_APPCACHE_APPCACHE_DISK_CACHE_H_
#include <set>
#include <vector>
#include "base/memory/scoped_ptr.h"
+#include "content/browser/appcache/appcache_response.h"
+#include "content/common/content_export.h"
#include "net/disk_cache/disk_cache.h"
-#include "webkit/browser/appcache/appcache_response.h"
-#include "webkit/browser/webkit_storage_browser_export.h"
-namespace appcache {
+namespace content {
// An implementation of AppCacheDiskCacheInterface that
// uses net::DiskCache as the backing store.
-class WEBKIT_STORAGE_BROWSER_EXPORT AppCacheDiskCache
+class CONTENT_EXPORT AppCacheDiskCache
: public AppCacheDiskCacheInterface {
public:
AppCacheDiskCache();
@@ -99,6 +99,6 @@ class WEBKIT_STORAGE_BROWSER_EXPORT AppCacheDiskCache
scoped_ptr<disk_cache::Backend> disk_cache_;
};
-} // namespace appcache
+} // namespace content
-#endif // WEBKIT_BROWSER_APPCACHE_APPCACHE_DISK_CACHE_H_
+#endif // CONTENT_BROWSER_APPCACHE_APPCACHE_DISK_CACHE_H_

Powered by Google App Engine
This is Rietveld 408576698