| Index: content/browser/appcache/appcache_request_handler.h
|
| diff --git a/webkit/browser/appcache/appcache_request_handler.h b/content/browser/appcache/appcache_request_handler.h
|
| similarity index 92%
|
| rename from webkit/browser/appcache/appcache_request_handler.h
|
| rename to content/browser/appcache/appcache_request_handler.h
|
| index fd3d1ad70663ed667512229bced2839805057305..c73e1dd6bf80e4d285db89b534ba4250a6219d23 100644
|
| --- a/webkit/browser/appcache/appcache_request_handler.h
|
| +++ b/content/browser/appcache/appcache_request_handler.h
|
| @@ -2,14 +2,14 @@
|
| // 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_REQUEST_HANDLER_H_
|
| -#define WEBKIT_BROWSER_APPCACHE_APPCACHE_REQUEST_HANDLER_H_
|
| +#ifndef CONTENT_BROWSER_APPCACHE_APPCACHE_REQUEST_HANDLER_H_
|
| +#define CONTENT_BROWSER_APPCACHE_APPCACHE_REQUEST_HANDLER_H_
|
|
|
| #include "base/compiler_specific.h"
|
| #include "base/supports_user_data.h"
|
| -#include "webkit/browser/appcache/appcache_entry.h"
|
| -#include "webkit/browser/appcache/appcache_host.h"
|
| -#include "webkit/browser/webkit_storage_browser_export.h"
|
| +#include "content/browser/appcache/appcache_entry.h"
|
| +#include "content/browser/appcache/appcache_host.h"
|
| +#include "content/common/content_export.h"
|
| #include "webkit/common/resource_type.h"
|
|
|
| namespace net {
|
| @@ -22,7 +22,7 @@ namespace content {
|
| class AppCacheRequestHandlerTest;
|
| }
|
|
|
| -namespace appcache {
|
| +namespace content {
|
|
|
| class AppCacheURLRequestJob;
|
|
|
| @@ -31,7 +31,7 @@ class AppCacheURLRequestJob;
|
| // given the opportunity to hijack the request along the way. Callers
|
| // should use AppCacheHost::CreateRequestHandler to manufacture instances
|
| // that can retrieve resources for a particular host.
|
| -class WEBKIT_STORAGE_BROWSER_EXPORT AppCacheRequestHandler
|
| +class CONTENT_EXPORT AppCacheRequestHandler
|
| : public base::SupportsUserData::Data,
|
| public AppCacheHost::Observer,
|
| public AppCacheStorage::Delegate {
|
| @@ -147,6 +147,6 @@ class WEBKIT_STORAGE_BROWSER_EXPORT AppCacheRequestHandler
|
| DISALLOW_COPY_AND_ASSIGN(AppCacheRequestHandler);
|
| };
|
|
|
| -} // namespace appcache
|
| +} // namespace content
|
|
|
| -#endif // WEBKIT_BROWSER_APPCACHE_APPCACHE_REQUEST_HANDLER_H_
|
| +#endif // CONTENT_BROWSER_APPCACHE_APPCACHE_REQUEST_HANDLER_H_
|
|
|