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

Unified Diff: webkit/browser/appcache/appcache_database.h

Issue 16701004: Fix webkit_storage exports definitions (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 6 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/browser/appcache/appcache_backend_impl.h ('k') | webkit/browser/appcache/appcache_disk_cache.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/browser/appcache/appcache_database.h
diff --git a/webkit/browser/appcache/appcache_database.h b/webkit/browser/appcache/appcache_database.h
index 104aa86e3b696028b669484c3665349f4a85f60e..e945c201c4ec0e86fdd6d3755eef5a9dcfd3b20c 100644
--- a/webkit/browser/appcache/appcache_database.h
+++ b/webkit/browser/appcache/appcache_database.h
@@ -15,8 +15,8 @@
#include "base/memory/scoped_ptr.h"
#include "base/time.h"
#include "googleurl/src/gurl.h"
+#include "webkit/browser/webkit_storage_browser_export.h"
#include "webkit/common/appcache/appcache_interfaces.h"
-#include "webkit/storage/webkit_storage_export.h"
namespace sql {
class Connection;
@@ -27,9 +27,9 @@ class StatementID;
namespace appcache {
-class WEBKIT_STORAGE_EXPORT AppCacheDatabase {
+class WEBKIT_STORAGE_BROWSER_EXPORT AppCacheDatabase {
public:
- struct WEBKIT_STORAGE_EXPORT GroupRecord {
+ struct WEBKIT_STORAGE_BROWSER_EXPORT GroupRecord {
GroupRecord();
~GroupRecord();
@@ -40,7 +40,7 @@ class WEBKIT_STORAGE_EXPORT AppCacheDatabase {
base::Time last_access_time;
};
- struct WEBKIT_STORAGE_EXPORT CacheRecord {
+ struct WEBKIT_STORAGE_BROWSER_EXPORT CacheRecord {
CacheRecord()
: cache_id(0), group_id(0), online_wildcard(false), cache_size(0) {}
@@ -61,7 +61,7 @@ class WEBKIT_STORAGE_EXPORT AppCacheDatabase {
int64 response_size;
};
- struct WEBKIT_STORAGE_EXPORT NamespaceRecord {
+ struct WEBKIT_STORAGE_BROWSER_EXPORT NamespaceRecord {
NamespaceRecord();
~NamespaceRecord();
« no previous file with comments | « webkit/browser/appcache/appcache_backend_impl.h ('k') | webkit/browser/appcache/appcache_disk_cache.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698