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

Unified Diff: ppapi/proxy/ppapi_proxy_test.cc

Issue 467303005: Remove implicit conversions from scoped_refptr to T* in ppapi/ (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
Index: ppapi/proxy/ppapi_proxy_test.cc
diff --git a/ppapi/proxy/ppapi_proxy_test.cc b/ppapi/proxy/ppapi_proxy_test.cc
index 87aa22b2860a7f9e330a8ee4602cc43a15ebdf60..fa23bfd515dcfd53483d580d05eed14c88988592 100644
--- a/ppapi/proxy/ppapi_proxy_test.cc
+++ b/ppapi/proxy/ppapi_proxy_test.cc
@@ -322,7 +322,7 @@ void PluginProxyMultiThreadTest::RunTest() {
main_thread_message_loop_proxy_ =
PpapiGlobals::Get()->GetMainThreadMessageLoop();
ASSERT_EQ(main_thread_message_loop_proxy_.get(),
- base::MessageLoopProxy::current());
+ base::MessageLoopProxy::current().get());
nested_main_thread_message_loop_.reset(new base::RunLoop());
secondary_thread_.reset(new base::DelegateSimpleThread(

Powered by Google App Engine
This is Rietveld 408576698