| Index: third_party/WebKit/Source/modules/time_zone_monitor/TimeZoneMonitorClient.cpp
|
| diff --git a/third_party/WebKit/Source/modules/time_zone_monitor/TimeZoneMonitorClient.cpp b/third_party/WebKit/Source/modules/time_zone_monitor/TimeZoneMonitorClient.cpp
|
| index 7351b1d4be1a35f460e3accdd99b8097106e1bb1..b16a6cdb729746367a7dd353901a3c1600479c40 100644
|
| --- a/third_party/WebKit/Source/modules/time_zone_monitor/TimeZoneMonitorClient.cpp
|
| +++ b/third_party/WebKit/Source/modules/time_zone_monitor/TimeZoneMonitorClient.cpp
|
| @@ -11,9 +11,9 @@
|
| #include "core/workers/WorkerOrWorkletGlobalScope.h"
|
| #include "core/workers/WorkerThread.h"
|
| #include "platform/CrossThreadFunctional.h"
|
| -#include "public/platform/Connector.h"
|
| #include "public/platform/Platform.h"
|
| #include "services/device/public/interfaces/constants.mojom-blink.h"
|
| +#include "services/service_manager/public/cpp/connector.h"
|
| #include "third_party/icu/source/i18n/unicode/timezone.h"
|
| #include "v8/include/v8.h"
|
|
|
| @@ -39,7 +39,7 @@ void TimeZoneMonitorClient::Init() {
|
| DEFINE_STATIC_LOCAL(TimeZoneMonitorClient, instance, ());
|
|
|
| device::mojom::blink::TimeZoneMonitorPtr monitor;
|
| - Platform::current()->connector()->bindInterface(
|
| + Platform::current()->connector()->BindInterface(
|
| device::mojom::blink::kServiceName, mojo::MakeRequest(&monitor));
|
| monitor->AddClient(instance.m_binding.CreateInterfacePtrAndBind());
|
| }
|
|
|