diff options
author | dpranke@chromium.org <dpranke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-14 02:47:54 +0000 |
---|---|---|
committer | dpranke@chromium.org <dpranke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-14 02:47:54 +0000 |
commit | b2ad61ce69acceabba0db7befa4b6401f3ee000d (patch) | |
tree | 23953651e9a855e20a72db0bf580d6a2de97d661 /webkit/appcache/web_application_cache_host_impl.h | |
parent | 04b482600c4a8d04c0de4911303deb92d635fb17 (diff) | |
download | chromium_src-b2ad61ce69acceabba0db7befa4b6401f3ee000d.zip chromium_src-b2ad61ce69acceabba0db7befa4b6401f3ee000d.tar.gz chromium_src-b2ad61ce69acceabba0db7befa4b6401f3ee000d.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
Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=100831
Review URL: http://codereview.chromium.org/7859021
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@101017 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.h | 4 |
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); |