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

Unified Diff: webkit/browser/quota/quota_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/quota/quota_client.h ('k') | webkit/browser/quota/quota_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/browser/quota/quota_database.h
diff --git a/webkit/browser/quota/quota_database.h b/webkit/browser/quota/quota_database.h
index ad9d5adb8a3d7dc7e9b3053402e09174793056c7..d81cc1a4b23a57f599b1c702ad82ba44f6d4ac26 100644
--- a/webkit/browser/quota/quota_database.h
+++ b/webkit/browser/quota/quota_database.h
@@ -16,8 +16,8 @@
#include "base/time.h"
#include "base/timer.h"
#include "googleurl/src/gurl.h"
+#include "webkit/browser/webkit_storage_browser_export.h"
#include "webkit/common/quota/quota_types.h"
-#include "webkit/storage/webkit_storage_export.h"
namespace sql {
class Connection;
@@ -31,7 +31,7 @@ namespace quota {
class SpecialStoragePolicy;
// All the methods of this class must run on the DB thread.
-class WEBKIT_STORAGE_EXPORT_PRIVATE QuotaDatabase {
+class WEBKIT_STORAGE_BROWSER_EXPORT_PRIVATE QuotaDatabase {
public:
// Constants for {Get,Set}QuotaConfigValue keys.
static const char kDesiredAvailableSpaceKey[];
@@ -88,7 +88,7 @@ class WEBKIT_STORAGE_EXPORT_PRIVATE QuotaDatabase {
bool SetOriginDatabaseBootstrapped(bool bootstrap_flag);
private:
- struct WEBKIT_STORAGE_EXPORT_PRIVATE QuotaTableEntry {
+ struct WEBKIT_STORAGE_BROWSER_EXPORT_PRIVATE QuotaTableEntry {
QuotaTableEntry();
QuotaTableEntry(
const std::string& host,
@@ -98,10 +98,10 @@ class WEBKIT_STORAGE_EXPORT_PRIVATE QuotaDatabase {
StorageType type;
int64 quota;
};
- friend WEBKIT_STORAGE_EXPORT_PRIVATE bool operator <(
+ friend WEBKIT_STORAGE_BROWSER_EXPORT_PRIVATE bool operator <(
const QuotaTableEntry& lhs, const QuotaTableEntry& rhs);
- struct WEBKIT_STORAGE_EXPORT_PRIVATE OriginInfoTableEntry {
+ struct WEBKIT_STORAGE_BROWSER_EXPORT_PRIVATE OriginInfoTableEntry {
OriginInfoTableEntry();
OriginInfoTableEntry(
const GURL& origin,
@@ -115,7 +115,7 @@ class WEBKIT_STORAGE_EXPORT_PRIVATE QuotaDatabase {
base::Time last_access_time;
base::Time last_modified_time;
};
- friend WEBKIT_STORAGE_EXPORT_PRIVATE bool operator <(
+ friend WEBKIT_STORAGE_BROWSER_EXPORT_PRIVATE bool operator <(
const OriginInfoTableEntry& lhs, const OriginInfoTableEntry& rhs);
// Structures used for CreateSchema.
« no previous file with comments | « webkit/browser/quota/quota_client.h ('k') | webkit/browser/quota/quota_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698