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

Unified Diff: content/shell/browser/layout_test/layout_test_message_filter.cc

Issue 2592793002: Revert of Change how the quota system computes the total poolsize for temporary storage (Closed)
Patch Set: Created 4 years 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: content/shell/browser/layout_test/layout_test_message_filter.cc
diff --git a/content/shell/browser/layout_test/layout_test_message_filter.cc b/content/shell/browser/layout_test/layout_test_message_filter.cc
index fe7ddf46c0a5a2d96031b50ca07c29f723c96f02..248f3e172659bb4f4d1051dd4b0734a37467ca45 100644
--- a/content/shell/browser/layout_test/layout_test_message_filter.cc
+++ b/content/shell/browser/layout_test/layout_test_message_filter.cc
@@ -119,7 +119,9 @@ void LayoutTestMessageFilter::OnClearAllDatabases() {
}
void LayoutTestMessageFilter::OnSetDatabaseQuota(int quota) {
- quota_manager_->SetQuotaSettings(storage::GetHardCodedSettings(quota));
+ quota_manager_->SetTemporaryGlobalOverrideQuota(
+ quota * storage::QuotaManager::kPerHostTemporaryPortion,
+ storage::QuotaCallback());
}
void LayoutTestMessageFilter::OnSimulateWebNotificationClick(

Powered by Google App Engine
This is Rietveld 408576698