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

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

Issue 1429333002: Deprecate STORAGE_EXPORT_PRIVATE macro. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix rebase error Created 5 years, 1 month 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
Index: storage/browser/quota/quota_database.h
diff --git a/storage/browser/quota/quota_database.h b/storage/browser/quota/quota_database.h
index dae5581f9d923795f1ab3651be353db58a8cbac7..4650dccc11cfd785c401c8e0af110d89ddd4053d 100644
--- a/storage/browser/quota/quota_database.h
+++ b/storage/browser/quota/quota_database.h
@@ -34,9 +34,9 @@ namespace storage {
class SpecialStoragePolicy;
// All the methods of this class must run on the DB thread.
-class STORAGE_EXPORT_PRIVATE QuotaDatabase {
+class STORAGE_EXPORT QuotaDatabase {
public:
- struct STORAGE_EXPORT_PRIVATE OriginInfoTableEntry {
+ struct STORAGE_EXPORT OriginInfoTableEntry {
OriginInfoTableEntry();
OriginInfoTableEntry(const GURL& origin,
StorageType type,
@@ -127,7 +127,7 @@ class STORAGE_EXPORT_PRIVATE QuotaDatabase {
bool SetOriginDatabaseBootstrapped(bool bootstrap_flag);
private:
- struct STORAGE_EXPORT_PRIVATE QuotaTableEntry {
+ struct STORAGE_EXPORT QuotaTableEntry {
QuotaTableEntry();
QuotaTableEntry(
const std::string& host,
@@ -137,9 +137,9 @@ class STORAGE_EXPORT_PRIVATE QuotaDatabase {
StorageType type;
int64 quota;
};
- friend STORAGE_EXPORT_PRIVATE bool operator <(
+ friend STORAGE_EXPORT bool operator <(
const QuotaTableEntry& lhs, const QuotaTableEntry& rhs);
- friend STORAGE_EXPORT_PRIVATE bool operator <(
+ friend STORAGE_EXPORT bool operator <(
const OriginInfoTableEntry& lhs, const OriginInfoTableEntry& rhs);
// Structures used for CreateSchema.
« no previous file with comments | « storage/browser/fileapi/transient_file_util.h ('k') | storage/browser/quota/quota_temporary_storage_evictor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698