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

Unified Diff: chrome/browser/browsing_data/browsing_data_quota_helper_unittest.cc

Issue 10948006: Cleanup: quota::HostQuotaCallback do not need to pass host and type as arguments (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed missed compile errors in unit_tests and fixed broken QuotaManagerTests Created 8 years, 3 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: chrome/browser/browsing_data/browsing_data_quota_helper_unittest.cc
diff --git a/chrome/browser/browsing_data/browsing_data_quota_helper_unittest.cc b/chrome/browser/browsing_data/browsing_data_quota_helper_unittest.cc
index 3d3b97150581028b309757a0e866d3f1deeb2580..4e5d3c4cab25a188f9c34ce1001cb61ad5e35be2 100644
--- a/chrome/browser/browsing_data/browsing_data_quota_helper_unittest.cc
+++ b/chrome/browser/browsing_data/browsing_data_quota_helper_unittest.cc
@@ -94,11 +94,8 @@ class BrowsingDataQuotaHelperTest : public testing::Test {
}
void GotPersistentHostQuota(quota::QuotaStatusCode status,
- const std::string& host,
- quota::StorageType type,
int64 quota) {
EXPECT_EQ(quota::kQuotaStatusOk, status);
- EXPECT_EQ(quota::kStorageTypePersistent, type);
quota_ = quota;
}

Powered by Google App Engine
This is Rietveld 408576698