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

Unified Diff: chrome/browser/media/cast_remoting_connector_unittest.cc

Issue 2589663003: mojo:: Rename mojo::GetProxy() to mojo::MakeRequest() (Closed)
Patch Set: Rebase Created 4 years 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: chrome/browser/media/cast_remoting_connector_unittest.cc
diff --git a/chrome/browser/media/cast_remoting_connector_unittest.cc b/chrome/browser/media/cast_remoting_connector_unittest.cc
index f2e178e32393e3bed5aeb6341b2143187c996284..bf613be2dea95248d871206a558156745e146f31 100644
--- a/chrome/browser/media/cast_remoting_connector_unittest.cc
+++ b/chrome/browser/media/cast_remoting_connector_unittest.cc
@@ -258,10 +258,10 @@ class CastRemotingConnectorTest : public ::testing::Test {
protected:
RemoterPtr CreateRemoter(MockRemotingSource* source) {
RemotingSourcePtr source_ptr;
- source->Bind(mojo::GetProxy(&source_ptr));
+ source->Bind(mojo::MakeRequest(&source_ptr));
RemoterPtr remoter_ptr;
connector_.CreateBridge(std::move(source_ptr),
- mojo::GetProxy(&remoter_ptr));
+ mojo::MakeRequest(&remoter_ptr));
return remoter_ptr;
}
« no previous file with comments | « chrome/browser/importer/external_process_importer_client.cc ('k') | chrome/browser/media/cast_remoting_sender_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698