Index: webkit/database/database_quota_client_unittest.cc |
diff --git a/webkit/database/database_quota_client_unittest.cc b/webkit/database/database_quota_client_unittest.cc |
index 9bbae9ecf00167ef70908bc70c51fb41ff04ad46..cc2762aad9ea89a9501d92d0626306269bfdfcac 100644 |
--- a/webkit/database/database_quota_client_unittest.cc |
+++ b/webkit/database/database_quota_client_unittest.cc |
@@ -184,8 +184,10 @@ class DatabaseQuotaClientTest : public testing::Test { |
usage_ = usage; |
} |
- void OnGetOriginsComplete(const std::set<GURL>& origins) { |
+ void OnGetOriginsComplete(const std::set<GURL>& origins, |
+ quota::StorageType type) { |
origins_ = origins; |
+ type_ = type; |
} |
void OnDeleteOriginDataComplete(quota::QuotaStatusCode status) { |
@@ -194,6 +196,7 @@ class DatabaseQuotaClientTest : public testing::Test { |
int64 usage_; |
std::set<GURL> origins_; |
+ quota::StorageType type_; |
quota::QuotaStatusCode delete_status_; |
scoped_refptr<MockDatabaseTracker> mock_tracker_; |
base::ScopedCallbackFactory<DatabaseQuotaClientTest> callback_factory_; |