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

Unified Diff: content/browser/appcache/appcache_storage_impl.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_storage_impl.h
diff --git a/webkit/browser/appcache/appcache_storage_impl.h b/content/browser/appcache/appcache_storage_impl.h
similarity index 92%
rename from webkit/browser/appcache/appcache_storage_impl.h
rename to content/browser/appcache/appcache_storage_impl.h
index a5103a63619ece56013bae99020ab0d5448e7863..dadf72e3805f592badb147512aeffe7f9e4c5452 100644
--- a/webkit/browser/appcache/appcache_storage_impl.h
+++ b/content/browser/appcache/appcache_storage_impl.h
@@ -2,8 +2,8 @@
// 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_STORAGE_IMPL_H_
-#define WEBKIT_BROWSER_APPCACHE_APPCACHE_STORAGE_IMPL_H_
+#ifndef CONTENT_BROWSER_APPCACHE_APPCACHE_STORAGE_IMPL_H_
+#define CONTENT_BROWSER_APPCACHE_APPCACHE_STORAGE_IMPL_H_
#include <deque>
#include <map>
@@ -15,17 +15,17 @@
#include "base/files/file_path.h"
#include "base/memory/weak_ptr.h"
#include "base/message_loop/message_loop_proxy.h"
-#include "webkit/browser/appcache/appcache_database.h"
-#include "webkit/browser/appcache/appcache_disk_cache.h"
-#include "webkit/browser/appcache/appcache_storage.h"
-#include "webkit/browser/webkit_storage_browser_export.h"
+#include "content/browser/appcache/appcache_database.h"
+#include "content/browser/appcache/appcache_disk_cache.h"
+#include "content/browser/appcache/appcache_storage.h"
+#include "content/common/content_export.h"
namespace content {
class AppCacheStorageImplTest;
class ChromeAppCacheServiceTest;
}
-namespace appcache {
+namespace content {
class AppCacheStorageImpl : public AppCacheStorage {
public:
@@ -132,7 +132,7 @@ class AppCacheStorageImpl : public AppCacheStorage {
const GURL& namespace_entry_url, const AppCacheEntry& fallback_entry,
int64 cache_id, int64 group_id, const GURL& manifest_url);
- WEBKIT_STORAGE_BROWSER_EXPORT AppCacheDiskCache* disk_cache();
+ CONTENT_EXPORT AppCacheDiskCache* disk_cache();
// The directory in which we place files in the file system.
base::FilePath cache_directory_;
@@ -176,6 +176,6 @@ class AppCacheStorageImpl : public AppCacheStorage {
friend class content::ChromeAppCacheServiceTest;
};
-} // namespace appcache
+} // namespace content
-#endif // WEBKIT_BROWSER_APPCACHE_APPCACHE_STORAGE_IMPL_H_
+#endif // CONTENT_BROWSER_APPCACHE_APPCACHE_STORAGE_IMPL_H_

Powered by Google App Engine
This is Rietveld 408576698