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

Unified Diff: net/base/network_change_notifier_linux_unittest.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
« no previous file with comments | « net/base/network_change_notifier_linux.cc ('k') | net/base/server_bound_cert_service_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/network_change_notifier_linux_unittest.cc
diff --git a/net/base/network_change_notifier_linux_unittest.cc b/net/base/network_change_notifier_linux_unittest.cc
index 10dda96f341e021339bc6cc257bfdf5839fd43c5..c66e240993d550a95cb5f7a52378a6cbdf59eb5f 100644
--- a/net/base/network_change_notifier_linux_unittest.cc
+++ b/net/base/network_change_notifier_linux_unittest.cc
@@ -46,12 +46,12 @@ class NetworkChangeNotifierLinuxTest : public testing::Test {
mock_bus_.get(),
"service_name",
dbus::ObjectPath("service_path"));
- EXPECT_CALL(*mock_bus_, GetObjectProxyWithOptions(_, _, _))
+ EXPECT_CALL(*mock_bus_.get(), GetObjectProxyWithOptions(_, _, _))
.WillOnce(Return(mock_object_proxy_.get()));
- EXPECT_CALL(*mock_object_proxy_, CallMethod(_, _, _))
+ EXPECT_CALL(*mock_object_proxy_.get(), CallMethod(_, _, _))
.WillOnce(SaveArg<2>(&response_callback_));
- EXPECT_CALL(*mock_object_proxy_, ConnectToSignal(_, _, _, _))
+ EXPECT_CALL(*mock_object_proxy_.get(), ConnectToSignal(_, _, _, _))
.WillOnce(
DoAll(
SaveArg<2>(&signal_callback_),
« no previous file with comments | « net/base/network_change_notifier_linux.cc ('k') | net/base/server_bound_cert_service_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698