diff options
author | dpranke@chromium.org <dpranke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-30 00:28:14 +0000 |
---|---|---|
committer | dpranke@chromium.org <dpranke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-30 00:28:14 +0000 |
commit | 03ff5e59b44cc3ad7bfc80e01af2d8bf53dcc34b (patch) | |
tree | 4890392665cbbec1941db05fa7b1ed68d9b79c46 /webkit/appcache/appcache.h | |
parent | 1347570839022dfc6b51ad0580352a7585b21562 (diff) | |
download | chromium_src-03ff5e59b44cc3ad7bfc80e01af2d8bf53dcc34b.zip chromium_src-03ff5e59b44cc3ad7bfc80e01af2d8bf53dcc34b.tar.gz chromium_src-03ff5e59b44cc3ad7bfc80e01af2d8bf53dcc34b.tar.bz2 |
Here are more exports needed for content_unittests to link in the component build.
R=jam@chromium.org, darin@chromium.org
BUG=90442
TEST=
Review URL: http://codereview.chromium.org/8054037
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103394 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/appcache/appcache.h')
-rw-r--r-- | webkit/appcache/appcache.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/webkit/appcache/appcache.h b/webkit/appcache/appcache.h index ca86740..fb7a90e 100644 --- a/webkit/appcache/appcache.h +++ b/webkit/appcache/appcache.h @@ -15,6 +15,7 @@ #include "googleurl/src/gurl.h" #include "webkit/appcache/appcache_database.h" #include "webkit/appcache/appcache_entry.h" +#include "webkit/appcache/appcache_export.h" #include "webkit/appcache/manifest_parser.h" namespace appcache { @@ -31,7 +32,7 @@ class AppCache : public base::RefCounted<AppCache> { typedef std::map<GURL, AppCacheEntry> EntryMap; typedef std::set<AppCacheHost*> AppCacheHosts; - AppCache(AppCacheService *service, int64 cache_id); + APPCACHE_EXPORT AppCache(AppCacheService *service, int64 cache_id); int64 cache_id() const { return cache_id_; } @@ -43,7 +44,7 @@ class AppCache : public base::RefCounted<AppCache> { AppCacheService* service() const { return service_; } // Adds a new entry. Entry must not already be in cache. - void AddEntry(const GURL& url, const AppCacheEntry& entry); + void APPCACHE_EXPORT AddEntry(const GURL& url, const AppCacheEntry& entry); // Adds a new entry or modifies an existing entry by merging the types // of the new entry with the existing entry. Returns true if a new entry |