Chromium Code Reviews| Index: third_party/WebKit/Source/modules/notifications/NotificationManager.cpp |
| diff --git a/third_party/WebKit/Source/modules/notifications/NotificationManager.cpp b/third_party/WebKit/Source/modules/notifications/NotificationManager.cpp |
| index 9bda0a1f198ef6ca8c2c08a2ae129fa87927987b..ea8a6f7de4d7595c2eb417e7e9b6d32d8583342b 100644 |
| --- a/third_party/WebKit/Source/modules/notifications/NotificationManager.cpp |
| +++ b/third_party/WebKit/Source/modules/notifications/NotificationManager.cpp |
| @@ -5,8 +5,8 @@ |
| #include "modules/notifications/NotificationManager.h" |
| #include "platform/weborigin/SecurityOrigin.h" |
| +#include "public/platform/InterfaceProvider.h" |
| #include "public/platform/Platform.h" |
| -#include "public/platform/ServiceRegistry.h" |
| #include "public/platform/modules/permissions/permission_status.mojom-blink.h" |
| namespace blink { |
| @@ -35,7 +35,7 @@ const char* NotificationManager::supplementName() |
| NotificationManager::NotificationManager(ExecutionContext* executionContext) |
| : ContextLifecycleObserver(executionContext) |
| { |
| - Platform::current()->serviceRegistry()->connectToRemoteService(mojo::GetProxy(&m_service)); |
| + Platform::current()->interfaceProvider()->getInterface(mojo::GetProxy(&m_service)); |
|
haraken
2016/07/30 15:39:06
Not directly related to this CL, should we try to
|
| } |
| NotificationManager::~NotificationManager() |