| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "modules/time_zone_monitor/TimeZoneMonitorClient.h" | 5 #include "modules/time_zone_monitor/TimeZoneMonitorClient.h" |
| 6 | 6 |
| 7 #include "bindings/core/v8/V8Binding.h" | 7 #include "bindings/core/v8/V8Binding.h" |
| 8 #include "bindings/core/v8/V8PerIsolateData.h" | 8 #include "bindings/core/v8/V8PerIsolateData.h" |
| 9 #include "core/dom/ExecutionContext.h" | 9 #include "core/dom/ExecutionContext.h" |
| 10 #include "core/workers/WorkerBackingThread.h" | 10 #include "core/workers/WorkerBackingThread.h" |
| 11 #include "core/workers/WorkerOrWorkletGlobalScope.h" | 11 #include "core/workers/WorkerOrWorkletGlobalScope.h" |
| 12 #include "core/workers/WorkerThread.h" | 12 #include "core/workers/WorkerThread.h" |
| 13 #include "platform/CrossThreadFunctional.h" | 13 #include "platform/CrossThreadFunctional.h" |
| 14 #include "platform/ServiceConnector.h" | 14 #include "public/platform/Connector.h" |
| 15 #include "public/platform/Platform.h" | 15 #include "public/platform/Platform.h" |
| 16 #include "services/device/public/interfaces/constants.mojom-blink.h" | 16 #include "services/device/public/interfaces/constants.mojom-blink.h" |
| 17 #include "third_party/icu/source/i18n/unicode/timezone.h" | 17 #include "third_party/icu/source/i18n/unicode/timezone.h" |
| 18 #include <v8.h> | 18 #include <v8.h> |
| 19 | 19 |
| 20 namespace blink { | 20 namespace blink { |
| 21 | 21 |
| 22 namespace { | 22 namespace { |
| 23 | 23 |
| 24 // Notify V8 that the date/time configuration of the system might have changed. | 24 // Notify V8 that the date/time configuration of the system might have changed. |
| 25 void NotifyTimezoneChangeToV8(v8::Isolate* isolate) { | 25 void NotifyTimezoneChangeToV8(v8::Isolate* isolate) { |
| 26 DCHECK(isolate); | 26 DCHECK(isolate); |
| 27 v8::Date::DateTimeConfigurationChangeNotification(isolate); | 27 v8::Date::DateTimeConfigurationChangeNotification(isolate); |
| 28 } | 28 } |
| 29 | 29 |
| 30 void NotifyTimezoneChangeOnWorkerThread(WorkerThread* workerThread) { | 30 void NotifyTimezoneChangeOnWorkerThread(WorkerThread* workerThread) { |
| 31 DCHECK(workerThread->isCurrentThread()); | 31 DCHECK(workerThread->isCurrentThread()); |
| 32 NotifyTimezoneChangeToV8(toIsolate(workerThread->globalScope())); | 32 NotifyTimezoneChangeToV8(toIsolate(workerThread->globalScope())); |
| 33 } | 33 } |
| 34 | 34 |
| 35 } // namespace | 35 } // namespace |
| 36 | 36 |
| 37 // static | 37 // static |
| 38 void TimeZoneMonitorClient::Init() { | 38 void TimeZoneMonitorClient::Init() { |
| 39 DEFINE_STATIC_LOCAL(TimeZoneMonitorClient, instance, ()); | 39 DEFINE_STATIC_LOCAL(TimeZoneMonitorClient, instance, ()); |
| 40 | 40 |
| 41 device::mojom::blink::TimeZoneMonitorPtr monitor; | 41 device::mojom::blink::TimeZoneMonitorPtr monitor; |
| 42 ServiceConnector::instance().connectToInterface( | 42 Platform::current()->connector()->getInterface( |
| 43 device::mojom::blink::kServiceName, mojo::MakeRequest(&monitor)); | 43 device::mojom::blink::kServiceName, mojo::MakeRequest(&monitor)); |
| 44 monitor->AddClient(instance.m_binding.CreateInterfacePtrAndBind()); | 44 monitor->AddClient(instance.m_binding.CreateInterfacePtrAndBind()); |
| 45 } | 45 } |
| 46 | 46 |
| 47 TimeZoneMonitorClient::TimeZoneMonitorClient() : m_binding(this) { | 47 TimeZoneMonitorClient::TimeZoneMonitorClient() : m_binding(this) { |
| 48 DCHECK(isMainThread()); | 48 DCHECK(isMainThread()); |
| 49 } | 49 } |
| 50 | 50 |
| 51 TimeZoneMonitorClient::~TimeZoneMonitorClient() {} | 51 TimeZoneMonitorClient::~TimeZoneMonitorClient() {} |
| 52 | 52 |
| (...skipping 18 matching lines...) Expand all Loading... |
| 71 if (posted.contains(&thread->workerBackingThread())) | 71 if (posted.contains(&thread->workerBackingThread())) |
| 72 continue; | 72 continue; |
| 73 thread->postTask(BLINK_FROM_HERE, | 73 thread->postTask(BLINK_FROM_HERE, |
| 74 crossThreadBind(&NotifyTimezoneChangeOnWorkerThread, | 74 crossThreadBind(&NotifyTimezoneChangeOnWorkerThread, |
| 75 WTF::crossThreadUnretained(thread))); | 75 WTF::crossThreadUnretained(thread))); |
| 76 posted.add(&thread->workerBackingThread()); | 76 posted.add(&thread->workerBackingThread()); |
| 77 } | 77 } |
| 78 } | 78 } |
| 79 | 79 |
| 80 } // namespace blink | 80 } // namespace blink |
| OLD | NEW |