| Index: content/browser/appcache/appcache_disk_cache.h
|
| diff --git a/webkit/browser/appcache/appcache_disk_cache.h b/content/browser/appcache/appcache_disk_cache.h
|
| similarity index 89%
|
| rename from webkit/browser/appcache/appcache_disk_cache.h
|
| rename to content/browser/appcache/appcache_disk_cache.h
|
| index d9f27d0fb09fce178f9f49cb95a062cdeb0b7590..3d51889ad1586bffc0c90495bd790ce95384e6c6 100644
|
| --- a/webkit/browser/appcache/appcache_disk_cache.h
|
| +++ b/content/browser/appcache/appcache_disk_cache.h
|
| @@ -2,22 +2,22 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#ifndef WEBKIT_BROWSER_APPCACHE_APPCACHE_DISK_CACHE_H_
|
| -#define WEBKIT_BROWSER_APPCACHE_APPCACHE_DISK_CACHE_H_
|
| +#ifndef CONTENT_BROWSER_APPCACHE_APPCACHE_DISK_CACHE_H_
|
| +#define CONTENT_BROWSER_APPCACHE_APPCACHE_DISK_CACHE_H_
|
|
|
| #include <set>
|
| #include <vector>
|
|
|
| #include "base/memory/scoped_ptr.h"
|
| +#include "content/browser/appcache/appcache_response.h"
|
| +#include "content/common/content_export.h"
|
| #include "net/disk_cache/disk_cache.h"
|
| -#include "webkit/browser/appcache/appcache_response.h"
|
| -#include "webkit/browser/webkit_storage_browser_export.h"
|
|
|
| -namespace appcache {
|
| +namespace content {
|
|
|
| // An implementation of AppCacheDiskCacheInterface that
|
| // uses net::DiskCache as the backing store.
|
| -class WEBKIT_STORAGE_BROWSER_EXPORT AppCacheDiskCache
|
| +class CONTENT_EXPORT AppCacheDiskCache
|
| : public AppCacheDiskCacheInterface {
|
| public:
|
| AppCacheDiskCache();
|
| @@ -99,6 +99,6 @@ class WEBKIT_STORAGE_BROWSER_EXPORT AppCacheDiskCache
|
| scoped_ptr<disk_cache::Backend> disk_cache_;
|
| };
|
|
|
| -} // namespace appcache
|
| +} // namespace content
|
|
|
| -#endif // WEBKIT_BROWSER_APPCACHE_APPCACHE_DISK_CACHE_H_
|
| +#endif // CONTENT_BROWSER_APPCACHE_APPCACHE_DISK_CACHE_H_
|
|
|