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

Unified Diff: webkit/appcache/appcache_database.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.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 7e2dc3f2dc9f753bebb42f158f4bccf17e4a6ec0..c6a6c3ff1e3590c91de6a339b8e7643f89c95b9b 100644
--- a/webkit/appcache/appcache_database.h
+++ b/webkit/appcache/appcache_database.h
@@ -26,9 +26,9 @@ class StatementID;
namespace appcache {
-class AppCacheDatabase {
+class APPCACHE_EXPORT AppCacheDatabase {
public:
- struct GroupRecord {
+ struct APPCACHE_EXPORT GroupRecord {
GroupRecord();
~GroupRecord();
@@ -39,7 +39,7 @@ class AppCacheDatabase {
base::Time last_access_time;
};
- struct CacheRecord {
+ struct APPCACHE_EXPORT CacheRecord {
CacheRecord()
: cache_id(0), group_id(0), online_wildcard(false), cache_size(0) {}
@@ -60,7 +60,7 @@ class AppCacheDatabase {
int64 response_size;
};
- struct FallbackNameSpaceRecord {
+ struct APPCACHE_EXPORT FallbackNameSpaceRecord {
FallbackNameSpaceRecord();
~FallbackNameSpaceRecord();
@@ -180,7 +180,7 @@ class AppCacheDatabase {
const sql::Statement& statement, OnlineWhiteListRecord* record);
// Database creation
- APPCACHE_EXPORT bool LazyOpen(bool create_if_needed);
+ bool LazyOpen(bool create_if_needed);
bool EnsureDatabaseVersion();
bool CreateSchema();
bool UpgradeSchema();
« no previous file with comments | « webkit/appcache/appcache.h ('k') | webkit/appcache/appcache_disk_cache.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698