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

Unified Diff: content/browser/appcache/appcache_database.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_database.cc
diff --git a/webkit/browser/appcache/appcache_database.cc b/content/browser/appcache/appcache_database.cc
similarity index 99%
rename from webkit/browser/appcache/appcache_database.cc
rename to content/browser/appcache/appcache_database.cc
index a5349d8ca914bb3ed6d700cd67b65977a96b7529..546c1dcef8a4a9ebb2b73528d61b8c67407ccca1 100644
--- a/webkit/browser/appcache/appcache_database.cc
+++ b/content/browser/appcache/appcache_database.cc
@@ -2,7 +2,7 @@
// 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_database.h"
+#include "content/browser/appcache/appcache_database.h"
#include "base/auto_reset.h"
#include "base/bind.h"
@@ -10,15 +10,15 @@
#include "base/file_util.h"
#include "base/logging.h"
#include "base/strings/utf_string_conversions.h"
+#include "content/browser/appcache/appcache_entry.h"
+#include "content/browser/appcache/appcache_histograms.h"
#include "sql/connection.h"
#include "sql/error_delegate_util.h"
#include "sql/meta_table.h"
#include "sql/statement.h"
#include "sql/transaction.h"
-#include "webkit/browser/appcache/appcache_entry.h"
-#include "webkit/browser/appcache/appcache_histograms.h"
-namespace appcache {
+namespace content {
// Schema -------------------------------------------------------------------
namespace {
@@ -1223,4 +1223,4 @@ void AppCacheDatabase::OnDatabaseError(int err, sql::Statement* stmt) {
// TODO: Maybe use non-catostrophic errors to trigger a full integrity check?
}
-} // namespace appcache
+} // namespace content

Powered by Google App Engine
This is Rietveld 408576698