Index: content/browser/in_process_webkit/indexed_db_quota_client.cc |
diff --git a/content/browser/in_process_webkit/indexed_db_quota_client.cc b/content/browser/in_process_webkit/indexed_db_quota_client.cc |
index 4c3aaac2312071e613e8a82fe403add1dd012af4..99033a975f9b99eedd506745dcead9d3e0270104 100644 |
--- a/content/browser/in_process_webkit/indexed_db_quota_client.cc |
+++ b/content/browser/in_process_webkit/indexed_db_quota_client.cc |
@@ -167,7 +167,7 @@ void IndexedDBQuotaClient::GetOriginsForType( |
// All databases are in the temp namespace for now. |
if (type != quota::kStorageTypeTemporary) { |
- callback->Run(std::set<GURL>()); |
+ callback->Run(std::set<GURL>(), type); |
return; |
} |
@@ -188,7 +188,7 @@ void IndexedDBQuotaClient::GetOriginsForHost( |
// All databases are in the temp namespace for now. |
if (type != quota::kStorageTypeTemporary) { |
- callback->Run(std::set<GURL>()); |
+ callback->Run(std::set<GURL>(), type); |
return; |
} |