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

Unified Diff: content/browser/appcache/appcache_backend_impl.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_backend_impl.cc
diff --git a/webkit/browser/appcache/appcache_backend_impl.cc b/content/browser/appcache/appcache_backend_impl.cc
similarity index 92%
rename from webkit/browser/appcache/appcache_backend_impl.cc
rename to content/browser/appcache/appcache_backend_impl.cc
index 376724e15efe7556b913c7eee5026aa4b0e9568d..099c54e55adae043a613cfdca79faaa2d1cfeadc 100644
--- a/webkit/browser/appcache/appcache_backend_impl.cc
+++ b/content/browser/appcache/appcache_backend_impl.cc
@@ -2,14 +2,14 @@
// 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_backend_impl.h"
+#include "content/browser/appcache/appcache_backend_impl.h"
#include "base/stl_util.h"
-#include "webkit/browser/appcache/appcache.h"
-#include "webkit/browser/appcache/appcache_group.h"
-#include "webkit/browser/appcache/appcache_service_impl.h"
+#include "content/browser/appcache/appcache.h"
+#include "content/browser/appcache/appcache_group.h"
+#include "content/browser/appcache/appcache_service_impl.h"
-namespace appcache {
+namespace content {
AppCacheBackendImpl::AppCacheBackendImpl()
: service_(NULL),
@@ -139,7 +139,7 @@ bool AppCacheBackendImpl::SwapCacheWithCallback(
}
void AppCacheBackendImpl::GetResourceList(
- int host_id, std::vector<appcache::AppCacheResourceInfo>* resource_infos) {
+ int host_id, std::vector<AppCacheResourceInfo>* resource_infos) {
AppCacheHost* host = GetHost(host_id);
if (!host)
return;
@@ -179,4 +179,4 @@ void AppCacheBackendImpl::TransferHostIn(
found->second = host.release();
}
-} // namespace appcache
+} // namespace content

Powered by Google App Engine
This is Rietveld 408576698