| 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
 | 
| 
 |