summaryrefslogtreecommitdiffstats
path: root/webkit/appcache/appcache_interceptor.h
diff options
context:
space:
mode:
authordpranke@chromium.org <dpranke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-13 01:27:48 +0000
committerdpranke@chromium.org <dpranke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-13 01:27:48 +0000
commit2f841580eb2158cd0e94b0872f2795a949e357e1 (patch)
treebfb8461b1fd169ab17e5fac3b87151e89407bfd4 /webkit/appcache/appcache_interceptor.h
parent200a1f1c1db2260a8737d83cf0f592ef8e4d866b (diff)
downloadchromium_src-2f841580eb2158cd0e94b0872f2795a949e357e1.zip
chromium_src-2f841580eb2158cd0e94b0872f2795a949e357e1.tar.gz
chromium_src-2f841580eb2158cd0e94b0872f2795a949e357e1.tar.bz2
Prepare appcache to build as a DLL in the component build.
This is needed to break the circular dependencies between appcache, chrome, and content (once we fix the messageloopproxy issue as seen in http://codereview.chromium.org/7841052/ ). R=michaeln@chromium.org, jam@chromium.org BUG=none TEST=none Review URL: http://codereview.chromium.org/7859021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@100831 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/appcache/appcache_interceptor.h')
-rw-r--r--webkit/appcache/appcache_interceptor.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/webkit/appcache/appcache_interceptor.h b/webkit/appcache/appcache_interceptor.h
index 1ddd7d2..423fd65 100644
--- a/webkit/appcache/appcache_interceptor.h
+++ b/webkit/appcache/appcache_interceptor.h
@@ -8,6 +8,7 @@
#include "base/memory/singleton.h"
#include "googleurl/src/gurl.h"
#include "net/url_request/url_request.h"
+#include "webkit/appcache/appcache_export.h"
#include "webkit/glue/resource_type.h"
namespace appcache {
@@ -17,7 +18,8 @@ class AppCacheService;
// An interceptor to hijack requests and potentially service them out of
// the appcache.
-class AppCacheInterceptor : public net::URLRequest::Interceptor {
+class APPCACHE_EXPORT AppCacheInterceptor
+ : public net::URLRequest::Interceptor {
public:
// Registers a singleton instance with the net library.
// Should be called early in the IO thread prior to initiating requests.