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

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

Issue 344493002: Move all remaining appcache-related code to content namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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.cc
diff --git a/webkit/browser/appcache/appcache.cc b/content/browser/appcache/appcache.cc
similarity index 96%
rename from webkit/browser/appcache/appcache.cc
rename to content/browser/appcache/appcache.cc
index 9179a4090f79f2c1ec1cf17d395b3f2aaa2c6801..f9dcfd69470ec8a43259fffa7731d309e6ba3050 100644
--- a/webkit/browser/appcache/appcache.cc
+++ b/content/browser/appcache/appcache.cc
@@ -2,19 +2,19 @@
// 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.h"
+#include "content/browser/appcache/appcache.h"
#include <algorithm>
#include "base/logging.h"
#include "base/stl_util.h"
-#include "webkit/browser/appcache/appcache_executable_handler.h"
-#include "webkit/browser/appcache/appcache_group.h"
-#include "webkit/browser/appcache/appcache_host.h"
-#include "webkit/browser/appcache/appcache_storage.h"
-#include "webkit/common/appcache/appcache_interfaces.h"
+#include "content/browser/appcache/appcache_executable_handler.h"
+#include "content/browser/appcache/appcache_group.h"
+#include "content/browser/appcache/appcache_host.h"
+#include "content/browser/appcache/appcache_storage.h"
+#include "content/public/common/appcache_interfaces.h"
-namespace appcache {
+namespace content {
AppCache::AppCache(AppCacheStorage* storage, int64 cache_id)
: cache_id_(cache_id),
@@ -321,4 +321,4 @@ const Namespace* AppCache::FindNamespace(
return NULL;
}
-} // namespace appcache
+} // namespace content

Powered by Google App Engine
This is Rietveld 408576698