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/appcache_frontend_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/appcache_frontend_impl.h')
-rw-r--r-- | webkit/appcache/appcache_frontend_impl.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/webkit/appcache/appcache_frontend_impl.h b/webkit/appcache/appcache_frontend_impl.h index 159cbec..ce37d26 100644 --- a/webkit/appcache/appcache_frontend_impl.h +++ b/webkit/appcache/appcache_frontend_impl.h @@ -1,4 +1,4 @@ -// Copyright (c) 2010 The Chromium Authors. All rights reserved. +// Copyright (c) 2011 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -7,11 +7,12 @@ #include <string> #include <vector> +#include "webkit/appcache/appcache_export.h" #include "webkit/appcache/appcache_interfaces.h" namespace appcache { -class AppCacheFrontendImpl : public AppCacheFrontend { +class APPCACHE_EXPORT AppCacheFrontendImpl : public AppCacheFrontend { public: virtual void OnCacheSelected( int host_id, const appcache::AppCacheInfo& info); |