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

Unified Diff: webkit/database/database_tracker.h

Issue 660113: Reset the default quota limit for extensions to 5MB, but add a... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 10 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
Index: webkit/database/database_tracker.h
===================================================================
--- webkit/database/database_tracker.h (revision 40091)
+++ webkit/database/database_tracker.h (working copy)
@@ -124,7 +124,10 @@
bool GetAllOriginsInfo(std::vector<OriginInfo>* origins_info);
void SetOriginQuota(const string16& origin_identifier, int64 new_quota);
+ void SetOriginQuotaInMemory(const string16& origin_identifier,
+ int64 new_quota);
+ int64 GetDefaultQuota() { return default_quota_; }
// Sets the default quota for all origins. Should be used in tests only.
void SetDefaultQuota(int64 quota);
@@ -216,6 +219,10 @@
// Default quota for all origins; changed only by tests
int64 default_quota_;
+ // Store quotas for extensions in memory, in order to prevent writing a row
+ // to quota_table_ every time an extention is loaded.
+ std::map<string16, int64> in_memory_quotas_;
+
FRIEND_TEST(DatabaseTrackerTest, TestIt);
};
« no previous file with comments | « chrome/test/data/extensions/storage_quota/unlimited_quota/1.0/manifest.json ('k') | webkit/database/database_tracker.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698