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

Unified Diff: content/browser/appcache/appcache_storage.cc

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.cc
diff --git a/webkit/browser/appcache/appcache_storage.cc b/content/browser/appcache/appcache_storage.cc
similarity index 95%
rename from webkit/browser/appcache/appcache_storage.cc
rename to content/browser/appcache/appcache_storage.cc
index ce4f01e1a3639aaf8f86082da6f44df9bd4dfa08..d78339db07a0c58121abe5be12cd5222f3c28ae7 100644
--- a/webkit/browser/appcache/appcache_storage.cc
+++ b/content/browser/appcache/appcache_storage.cc
@@ -2,17 +2,17 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "webkit/browser/appcache/appcache_storage.h"
+#include "content/browser/appcache/appcache_storage.h"
#include "base/bind.h"
#include "base/bind_helpers.h"
#include "base/stl_util.h"
-#include "webkit/browser/appcache/appcache_response.h"
-#include "webkit/browser/appcache/appcache_service_impl.h"
+#include "content/browser/appcache/appcache_response.h"
+#include "content/browser/appcache/appcache_service_impl.h"
#include "webkit/browser/quota/quota_client.h"
#include "webkit/browser/quota/quota_manager_proxy.h"
-namespace appcache {
+namespace content {
// static
const int64 AppCacheStorage::kUnitializedId = -1;
@@ -132,5 +132,5 @@ void AppCacheStorage::NotifyStorageAccessed(const GURL& origin) {
origin, quota::kStorageTypeTemporary);
}
-} // namespace appcache
+} // namespace content

Powered by Google App Engine
This is Rietveld 408576698