| 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.
|
|
|