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

Unified Diff: content/public/browser/browser_message_filter.cc

Issue 504273002: Remove implicit conversions from scoped_refptr to T* in content/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
« no previous file with comments | « content/child/threaded_data_provider.cc ('k') | content/public/renderer/video_encode_accelerator.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/browser/browser_message_filter.cc
diff --git a/content/public/browser/browser_message_filter.cc b/content/public/browser/browser_message_filter.cc
index 6b3432204b990b5e24a5d3ba27c1f5d01dc86a41..595570d046c5ef56c3b6135c670ab3440aa6adfa 100644
--- a/content/public/browser/browser_message_filter.cc
+++ b/content/public/browser/browser_message_filter.cc
@@ -67,7 +67,7 @@ class BrowserMessageFilter::Internal : public IPC::MessageFilter {
}
if (thread == BrowserThread::UI &&
- !BrowserMessageFilter::CheckCanDispatchOnUI(message, filter_)) {
+ !BrowserMessageFilter::CheckCanDispatchOnUI(message, filter_.get())) {
return true;
}
« no previous file with comments | « content/child/threaded_data_provider.cc ('k') | content/public/renderer/video_encode_accelerator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698