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

Unified Diff: webkit/browser/quota/quota_database.h

Issue 498273002: Rename storage-related export macros and build targets (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 4 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 4e3128f85300696888aebcbcb1ba4e5e6fee18e3..137305cb81354764ce1328311ebe725692b69bf7 100644
--- a/webkit/browser/quota/quota_database.h
+++ b/webkit/browser/quota/quota_database.h
@@ -16,7 +16,7 @@
#include "base/time/time.h"
#include "base/timer/timer.h"
#include "url/gurl.h"
-#include "webkit/browser/webkit_storage_browser_export.h"
+#include "webkit/browser/storage_export.h"
#include "webkit/common/quota/quota_types.h"
namespace content {
@@ -35,7 +35,7 @@ namespace storage {
class SpecialStoragePolicy;
// All the methods of this class must run on the DB thread.
-class WEBKIT_STORAGE_BROWSER_EXPORT_PRIVATE QuotaDatabase {
+class STORAGE_EXPORT_PRIVATE QuotaDatabase {
public:
// Constants for {Get,Set}QuotaConfigValue keys.
static const char kDesiredAvailableSpaceKey[];
@@ -92,7 +92,7 @@ class WEBKIT_STORAGE_BROWSER_EXPORT_PRIVATE QuotaDatabase {
bool SetOriginDatabaseBootstrapped(bool bootstrap_flag);
private:
- struct WEBKIT_STORAGE_BROWSER_EXPORT_PRIVATE QuotaTableEntry {
+ struct STORAGE_EXPORT_PRIVATE QuotaTableEntry {
QuotaTableEntry();
QuotaTableEntry(
const std::string& host,
@@ -102,10 +102,10 @@ class WEBKIT_STORAGE_BROWSER_EXPORT_PRIVATE QuotaDatabase {
StorageType type;
int64 quota;
};
- friend WEBKIT_STORAGE_BROWSER_EXPORT_PRIVATE bool operator <(
+ friend STORAGE_EXPORT_PRIVATE bool operator <(
const QuotaTableEntry& lhs, const QuotaTableEntry& rhs);
- struct WEBKIT_STORAGE_BROWSER_EXPORT_PRIVATE OriginInfoTableEntry {
+ struct STORAGE_EXPORT_PRIVATE OriginInfoTableEntry {
OriginInfoTableEntry();
OriginInfoTableEntry(
const GURL& origin,
@@ -119,7 +119,7 @@ class WEBKIT_STORAGE_BROWSER_EXPORT_PRIVATE QuotaDatabase {
base::Time last_access_time;
base::Time last_modified_time;
};
- friend WEBKIT_STORAGE_BROWSER_EXPORT_PRIVATE bool operator <(
+ friend STORAGE_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