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

Unified Diff: third_party/WebKit/Source/modules/shapedetection/BarcodeDetector.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/shapedetection/BarcodeDetector.cpp
diff --git a/third_party/WebKit/Source/modules/shapedetection/BarcodeDetector.cpp b/third_party/WebKit/Source/modules/shapedetection/BarcodeDetector.cpp
index 647bf501722e2ff5e2a3e0a81521ba2ad38f45bf..cf82763bf7b278651c80b42c03022b753af4f4ff 100644
--- a/third_party/WebKit/Source/modules/shapedetection/BarcodeDetector.cpp
+++ b/third_party/WebKit/Source/modules/shapedetection/BarcodeDetector.cpp
@@ -20,7 +20,7 @@ BarcodeDetector* BarcodeDetector::create(Document& document) {
}
BarcodeDetector::BarcodeDetector(LocalFrame& frame) : ShapeDetector(frame) {
- frame.interfaceProvider()->getInterface(mojo::GetProxy(&m_barcodeService));
+ frame.interfaceProvider()->getInterface(mojo::MakeRequest(&m_barcodeService));
m_barcodeService.set_connection_error_handler(convertToBaseCallback(
WTF::bind(&BarcodeDetector::onBarcodeServiceConnectionError,
wrapWeakPersistent(this))));

Powered by Google App Engine
This is Rietveld 408576698