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

Unified Diff: third_party/WebKit/Source/platform/graphics/CanvasSurfaceLayerBridgeClientImpl.cpp

Issue 2196843003: Blink ServiceRegistry -> InterfaceProvider (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 5 months 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/CanvasSurfaceLayerBridgeClientImpl.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/CanvasSurfaceLayerBridgeClientImpl.cpp b/third_party/WebKit/Source/platform/graphics/CanvasSurfaceLayerBridgeClientImpl.cpp
index 1a8e58ec1ba5716d7fe7a7fd407250bd3e1731c8..f22a7687044d952d2f0f7061ddcc2d0ffc0ec124 100644
--- a/third_party/WebKit/Source/platform/graphics/CanvasSurfaceLayerBridgeClientImpl.cpp
+++ b/third_party/WebKit/Source/platform/graphics/CanvasSurfaceLayerBridgeClientImpl.cpp
@@ -4,15 +4,15 @@
#include "platform/graphics/CanvasSurfaceLayerBridgeClientImpl.h"
+#include "public/platform/InterfaceProvider.h"
#include "public/platform/Platform.h"
-#include "public/platform/ServiceRegistry.h"
namespace blink {
CanvasSurfaceLayerBridgeClientImpl::CanvasSurfaceLayerBridgeClientImpl()
{
DCHECK(!m_service.is_bound());
- Platform::current()->serviceRegistry()->connectToRemoteService(mojo::GetProxy(&m_service));
+ Platform::current()->interfaceProvider()->getInterface(mojo::GetProxy(&m_service));
}
CanvasSurfaceLayerBridgeClientImpl::~CanvasSurfaceLayerBridgeClientImpl()

Powered by Google App Engine
This is Rietveld 408576698