| Index: content/browser/appcache/appcache_storage_impl.cc
|
| diff --git a/webkit/browser/appcache/appcache_storage_impl.cc b/content/browser/appcache/appcache_storage_impl.cc
|
| similarity index 99%
|
| rename from webkit/browser/appcache/appcache_storage_impl.cc
|
| rename to content/browser/appcache/appcache_storage_impl.cc
|
| index 62563d7ff1b5f2bb637f2f3fc294f6c6922d6a9a..4fd3b3c199fb9120d156a45587af9c4c77e44a1d 100644
|
| --- a/webkit/browser/appcache/appcache_storage_impl.cc
|
| +++ b/content/browser/appcache/appcache_storage_impl.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_storage_impl.h"
|
| +#include "content/browser/appcache/appcache_storage_impl.h"
|
|
|
| #include <algorithm>
|
| #include <functional>
|
| @@ -16,24 +16,24 @@
|
| #include "base/message_loop/message_loop.h"
|
| #include "base/stl_util.h"
|
| #include "base/strings/string_util.h"
|
| +#include "content/browser/appcache/appcache.h"
|
| +#include "content/browser/appcache/appcache_database.h"
|
| +#include "content/browser/appcache/appcache_entry.h"
|
| +#include "content/browser/appcache/appcache_group.h"
|
| +#include "content/browser/appcache/appcache_histograms.h"
|
| +#include "content/browser/appcache/appcache_quota_client.h"
|
| +#include "content/browser/appcache/appcache_response.h"
|
| +#include "content/browser/appcache/appcache_service_impl.h"
|
| #include "net/base/cache_type.h"
|
| #include "net/base/net_errors.h"
|
| #include "sql/connection.h"
|
| #include "sql/transaction.h"
|
| -#include "webkit/browser/appcache/appcache.h"
|
| -#include "webkit/browser/appcache/appcache_database.h"
|
| -#include "webkit/browser/appcache/appcache_entry.h"
|
| -#include "webkit/browser/appcache/appcache_group.h"
|
| -#include "webkit/browser/appcache/appcache_histograms.h"
|
| -#include "webkit/browser/appcache/appcache_quota_client.h"
|
| -#include "webkit/browser/appcache/appcache_response.h"
|
| -#include "webkit/browser/appcache/appcache_service_impl.h"
|
| #include "webkit/browser/quota/quota_client.h"
|
| #include "webkit/browser/quota/quota_manager.h"
|
| #include "webkit/browser/quota/quota_manager_proxy.h"
|
| #include "webkit/browser/quota/special_storage_policy.h"
|
|
|
| -namespace appcache {
|
| +namespace content {
|
|
|
| // Hard coded default when not using quota management.
|
| static const int kDefaultQuota = 5 * 1024 * 1024;
|
| @@ -1857,4 +1857,4 @@ void AppCacheStorageImpl::CallScheduleReinitialize() {
|
| // note: 'this' may be deleted at this point.
|
| }
|
|
|
| -} // namespace appcache
|
| +} // namespace content
|
|
|