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