Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(181)

Unified Diff: webkit/appcache/appcache.h

Issue 8086017: add more appcache_exports needed for test_shell_tests (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix weird merge issues Created 9 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | webkit/appcache/appcache_database.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « no previous file | webkit/appcache/appcache_database.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698