summaryrefslogtreecommitdiffstats
path: root/webkit/appcache/web_application_cache_host_impl.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/web_application_cache_host_impl.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/web_application_cache_host_impl.h')
-rw-r--r--webkit/appcache/web_application_cache_host_impl.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/webkit/appcache/web_application_cache_host_impl.h b/webkit/appcache/web_application_cache_host_impl.h
index 7b6789a..7595a5d 100644
--- a/webkit/appcache/web_application_cache_host_impl.h
+++ b/webkit/appcache/web_application_cache_host_impl.h
@@ -11,6 +11,7 @@
#include "third_party/WebKit/Source/WebKit/chromium/public/WebApplicationCacheHostClient.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebURLResponse.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebVector.h"
+#include "webkit/appcache/appcache_export.h"
#include "webkit/appcache/appcache_interfaces.h"
namespace WebKit {
@@ -19,7 +20,8 @@ class WebFrame;
namespace appcache {
-class WebApplicationCacheHostImpl : public WebKit::WebApplicationCacheHost {
+class APPCACHE_EXPORT WebApplicationCacheHostImpl
+ : NON_EXPORTED_BASE(public WebKit::WebApplicationCacheHost) {
public:
// Returns the host having given id or NULL if there is no such host.
static WebApplicationCacheHostImpl* FromId(int id);