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

Unified Diff: webkit/appcache/appcache_database.h

Issue 11230022: webkit: Merge build target 'appcache' to 'webkit_storage' (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: _ Created 8 years, 2 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_backend_impl.h ('k') | webkit/appcache/appcache_disk_cache.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/appcache/appcache_database.h
diff --git a/webkit/appcache/appcache_database.h b/webkit/appcache/appcache_database.h
index 537d5fcee394bbecf6a06745ff0e8aa1eba7ac49..5fe74a46659e64253dfe38ab9465e7a20b9ec093 100644
--- a/webkit/appcache/appcache_database.h
+++ b/webkit/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/appcache/appcache_export.h"
#include "webkit/appcache/appcache_interfaces.h"
+#include "webkit/storage/webkit_storage_export.h"
namespace sql {
class Connection;
@@ -27,9 +27,9 @@ class StatementID;
namespace appcache {
-class APPCACHE_EXPORT AppCacheDatabase {
+class WEBKIT_STORAGE_EXPORT AppCacheDatabase {
public:
- struct APPCACHE_EXPORT GroupRecord {
+ struct WEBKIT_STORAGE_EXPORT GroupRecord {
GroupRecord();
~GroupRecord();
@@ -40,7 +40,7 @@ class APPCACHE_EXPORT AppCacheDatabase {
base::Time last_access_time;
};
- struct APPCACHE_EXPORT CacheRecord {
+ struct WEBKIT_STORAGE_EXPORT CacheRecord {
CacheRecord()
: cache_id(0), group_id(0), online_wildcard(false), cache_size(0) {}
@@ -61,7 +61,7 @@ class APPCACHE_EXPORT AppCacheDatabase {
int64 response_size;
};
- struct APPCACHE_EXPORT NamespaceRecord {
+ struct WEBKIT_STORAGE_EXPORT NamespaceRecord {
NamespaceRecord();
~NamespaceRecord();
« no previous file with comments | « webkit/appcache/appcache_backend_impl.h ('k') | webkit/appcache/appcache_disk_cache.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698