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

Unified Diff: webkit/appcache/appcache_group.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 | « webkit/appcache/appcache_disk_cache.h ('k') | webkit/appcache/appcache_host.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/appcache/appcache_group.h
diff --git a/webkit/appcache/appcache_group.h b/webkit/appcache/appcache_group.h
index 3dd87bfecce29f1e7abf111ba87f282706c2f500..383ad54ef076e9d82761f1ceec554a11cd6c1950 100644
--- a/webkit/appcache/appcache_group.h
+++ b/webkit/appcache/appcache_group.h
@@ -14,8 +14,8 @@
#include "base/observer_list.h"
#include "base/task.h"
#include "base/time.h"
-#include "webkit/appcache/appcache_export.h"
#include "googleurl/src/gurl.h"
+#include "webkit/appcache/appcache_export.h"
namespace appcache {
@@ -27,10 +27,10 @@ class HostObserver;
// Collection of application caches identified by the same manifest URL.
// A group exists as long as it is in use by a host or is being updated.
-class AppCacheGroup : public base::RefCounted<AppCacheGroup> {
+class APPCACHE_EXPORT AppCacheGroup : public base::RefCounted<AppCacheGroup> {
public:
- class UpdateObserver {
+ class APPCACHE_EXPORT UpdateObserver {
public:
// Called just after an appcache update has completed.
virtual void OnUpdateComplete(AppCacheGroup* group) = 0;
@@ -43,9 +43,8 @@ class AppCacheGroup : public base::RefCounted<AppCacheGroup> {
DOWNLOADING,
};
- APPCACHE_EXPORT AppCacheGroup(AppCacheService* service,
- const GURL& manifest_url,
- int64 group_id);
+ AppCacheGroup(AppCacheService* service, const GURL& manifest_url,
+ int64 group_id);
// Adds/removes an update observer, the AppCacheGroup does not take
// ownership of the observer.
@@ -64,7 +63,7 @@ class AppCacheGroup : public base::RefCounted<AppCacheGroup> {
AppCache* newest_complete_cache() const { return newest_complete_cache_; }
- APPCACHE_EXPORT void AddCache(AppCache* complete_cache);
+ void AddCache(AppCache* complete_cache);
void RemoveCache(AppCache* cache);
bool HasCache() const { return newest_complete_cache_ != NULL; }
« no previous file with comments | « webkit/appcache/appcache_disk_cache.h ('k') | webkit/appcache/appcache_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698