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

Unified Diff: content/browser/in_process_webkit/indexed_db_quota_client.cc

Issue 11275088: Remove implicit scoped_refptr operator T* Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 8 years, 2 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: 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 3096c9598d48bfb88fe015ce505e82be4da1edfc..7f43a4edaf64f01ba1756fb063b74265188db301 100644
--- a/content/browser/in_process_webkit/indexed_db_quota_client.cc
+++ b/content/browser/in_process_webkit/indexed_db_quota_client.cc
@@ -99,7 +99,7 @@ void IndexedDBQuotaClient::GetOriginUsage(
}
base::PostTaskAndReplyWithResult(
- webkit_thread_message_loop_,
+ webkit_thread_message_loop_.get(),
FROM_HERE,
base::Bind(&GetOriginUsageOnWebKitThread,
indexed_db_context_,
@@ -167,7 +167,7 @@ void IndexedDBQuotaClient::DeleteOriginData(
}
base::PostTaskAndReplyWithResult(
- webkit_thread_message_loop_,
+ webkit_thread_message_loop_.get(),
FROM_HERE,
base::Bind(&DeleteOriginDataOnWebKitThread,
indexed_db_context_,

Powered by Google App Engine
This is Rietveld 408576698