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

Unified Diff: third_party/WebKit/Source/modules/shapedetection/FaceDetector.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/FaceDetector.cpp
diff --git a/third_party/WebKit/Source/modules/shapedetection/FaceDetector.cpp b/third_party/WebKit/Source/modules/shapedetection/FaceDetector.cpp
index 982ecd45c1e0684ee5d625accc5e02583b7f0e29..060c66f89195f31b31daa50b731e2c50532e69a7 100644
--- a/third_party/WebKit/Source/modules/shapedetection/FaceDetector.cpp
+++ b/third_party/WebKit/Source/modules/shapedetection/FaceDetector.cpp
@@ -29,8 +29,8 @@ FaceDetector::FaceDetector(LocalFrame& frame,
faceDetectorOptions->max_detected_faces = options.maxDetectedFaces();
faceDetectorOptions->fast_mode = options.fastMode();
mojom::blink::FaceDetectionProviderPtr provider;
- frame.interfaceProvider()->getInterface(mojo::GetProxy(&provider));
- provider->CreateFaceDetection(mojo::GetProxy(&m_faceService),
+ frame.interfaceProvider()->getInterface(mojo::MakeRequest(&provider));
+ provider->CreateFaceDetection(mojo::MakeRequest(&m_faceService),
std::move(faceDetectorOptions));
m_faceService.set_connection_error_handler(convertToBaseCallback(WTF::bind(

Powered by Google App Engine
This is Rietveld 408576698