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

Unified Diff: media/remoting/remoting_cdm_factory.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
« no previous file with comments | « media/remoting/remote_demuxer_stream_adapter_unittest.cc ('k') | media/remoting/remoting_source_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/remoting/remoting_cdm_factory.cc
diff --git a/media/remoting/remoting_cdm_factory.cc b/media/remoting/remoting_cdm_factory.cc
index 83ecfff6f2adf1509176eb6dc2f1865479fcb222..e24b80a6ccd4c57e5922f5590347f295d85c2fe3 100644
--- a/media/remoting/remoting_cdm_factory.cc
+++ b/media/remoting/remoting_cdm_factory.cc
@@ -30,10 +30,10 @@ std::unique_ptr<RemotingCdmController>
RemotingCdmFactory::CreateRemotingCdmController() {
mojom::RemotingSourcePtr remoting_source;
mojom::RemotingSourceRequest remoting_source_request =
- mojo::GetProxy(&remoting_source);
+ mojo::MakeRequest(&remoting_source);
mojom::RemoterPtr remoter;
remoter_factory_->Create(std::move(remoting_source),
- mojo::GetProxy(&remoter));
+ mojo::MakeRequest(&remoter));
scoped_refptr<RemotingSourceImpl> remoting_source_impl =
new RemotingSourceImpl(std::move(remoting_source_request),
std::move(remoter));
« no previous file with comments | « media/remoting/remote_demuxer_stream_adapter_unittest.cc ('k') | media/remoting/remoting_source_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698