| Index: webkit/appcache/appcache.h
|
| diff --git a/webkit/appcache/appcache.h b/webkit/appcache/appcache.h
|
| index fb7a90e92b234da01b6571c3e54179dba5312899..2fbb9cd55a31f01ed2713bbb6062ac04cfd4e7cd 100644
|
| --- a/webkit/appcache/appcache.h
|
| +++ b/webkit/appcache/appcache.h
|
| @@ -27,12 +27,12 @@ class AppCacheService;
|
| // Set of cached resources for an application. A cache exists as long as a
|
| // host is associated with it, the cache is in an appcache group or the
|
| // cache is being created during an appcache upate.
|
| -class AppCache : public base::RefCounted<AppCache> {
|
| +class APPCACHE_EXPORT AppCache : public base::RefCounted<AppCache> {
|
| public:
|
| typedef std::map<GURL, AppCacheEntry> EntryMap;
|
| typedef std::set<AppCacheHost*> AppCacheHosts;
|
|
|
| - APPCACHE_EXPORT AppCache(AppCacheService *service, int64 cache_id);
|
| + AppCache(AppCacheService *service, int64 cache_id);
|
|
|
| int64 cache_id() const { return cache_id_; }
|
|
|
| @@ -44,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 APPCACHE_EXPORT AddEntry(const GURL& url, const AppCacheEntry& entry);
|
| + void 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
|
|
|