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

Unified Diff: third_party/WebKit/Source/modules/broadcastchannel/BroadcastChannel.cpp

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: third_party/WebKit/Source/modules/broadcastchannel/BroadcastChannel.cpp
diff --git a/third_party/WebKit/Source/modules/broadcastchannel/BroadcastChannel.cpp b/third_party/WebKit/Source/modules/broadcastchannel/BroadcastChannel.cpp
index 707da82eaffb1871c5ef9689e14df3db8c73863f..03063fa4c2af224d47c96f3b1429c5d7b4f38c5d 100644
--- a/third_party/WebKit/Source/modules/broadcastchannel/BroadcastChannel.cpp
+++ b/third_party/WebKit/Source/modules/broadcastchannel/BroadcastChannel.cpp
@@ -28,7 +28,7 @@ mojom::blink::BroadcastChannelProviderPtr& getThreadSpecificProvider() {
new ThreadSpecific<mojom::blink::BroadcastChannelProviderPtr>);
if (!provider.isSet()) {
Platform::current()->interfaceProvider()->getInterface(
- mojo::GetProxy(&*provider));
+ mojo::MakeRequest(&*provider));
}
return *provider;
}

Powered by Google App Engine
This is Rietveld 408576698