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

Unified Diff: third_party/WebKit/Source/modules/nfc/NFC.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/nfc/NFC.cpp
diff --git a/third_party/WebKit/Source/modules/nfc/NFC.cpp b/third_party/WebKit/Source/modules/nfc/NFC.cpp
index 3cf1e87a94518a85e351690e1f8e6acaaa2479a9..0f0a5b7d99043fa51cee0b93b92a1b91345785b9 100644
--- a/third_party/WebKit/Source/modules/nfc/NFC.cpp
+++ b/third_party/WebKit/Source/modules/nfc/NFC.cpp
@@ -574,7 +574,7 @@ NFC::NFC(LocalFrame* frame)
: PageVisibilityObserver(frame->page()),
ContextLifecycleObserver(frame->document()),
m_client(this) {
- frame->interfaceProvider()->getInterface(mojo::GetProxy(&m_nfc));
+ frame->interfaceProvider()->getInterface(mojo::MakeRequest(&m_nfc));
m_nfc.set_connection_error_handler(convertToBaseCallback(
WTF::bind(&NFC::OnConnectionError, wrapWeakPersistent(this))));
m_nfc->SetClient(m_client.CreateInterfacePtrAndBind());

Powered by Google App Engine
This is Rietveld 408576698