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

Unified Diff: components/policy/core/browser/url_blacklist_manager.cc

Issue 506633004: Remove implicit conversions from scoped_refptr to T* in components/policy/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Some more changes Created 6 years, 4 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: components/policy/core/browser/url_blacklist_manager.cc
diff --git a/components/policy/core/browser/url_blacklist_manager.cc b/components/policy/core/browser/url_blacklist_manager.cc
index 8e45c09c0f0702f0fce7c8159bb05d824611e740..8ec9170340eb1ae780bc40e8f36f09e0bc617649 100644
--- a/components/policy/core/browser/url_blacklist_manager.cc
+++ b/components/policy/core/browser/url_blacklist_manager.cc
@@ -469,7 +469,7 @@ void URLBlacklistManager::UpdateOnIO(scoped_ptr<base::ListValue> block,
// The URLBlacklist is built on a worker thread. Once it's ready, it is passed
// to the URLBlacklistManager on IO.
base::PostTaskAndReplyWithResult(
- background_task_runner_,
+ background_task_runner_.get(),
FROM_HERE,
base::Bind(&BuildBlacklist,
base::Passed(&block),

Powered by Google App Engine
This is Rietveld 408576698