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

Unified Diff: third_party/WebKit/Source/platform/graphics/CanvasSurfaceLayerBridge.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/platform/graphics/CanvasSurfaceLayerBridge.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/CanvasSurfaceLayerBridge.cpp b/third_party/WebKit/Source/platform/graphics/CanvasSurfaceLayerBridge.cpp
index 0c58ec665a9bc86ec78c5b9e086ec11525119270..036fc0411927af6f370b3f6bd188e9df12fbde74 100644
--- a/third_party/WebKit/Source/platform/graphics/CanvasSurfaceLayerBridge.cpp
+++ b/third_party/WebKit/Source/platform/graphics/CanvasSurfaceLayerBridge.cpp
@@ -66,10 +66,10 @@ CanvasSurfaceLayerBridge::CanvasSurfaceLayerBridge(
DCHECK(!m_service.is_bound());
mojom::blink::OffscreenCanvasSurfaceFactoryPtr serviceFactory;
Platform::current()->interfaceProvider()->getInterface(
- mojo::GetProxy(&serviceFactory));
+ mojo::MakeRequest(&serviceFactory));
serviceFactory->CreateOffscreenCanvasSurface(
m_frameSinkId, m_binding.CreateInterfacePtrAndBind(),
- mojo::GetProxy(&m_service));
+ mojo::MakeRequest(&m_service));
}
CanvasSurfaceLayerBridge::~CanvasSurfaceLayerBridge() {

Powered by Google App Engine
This is Rietveld 408576698