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 <v8.h> |
7 #include "bindings/core/v8/V8Binding.h" | 8 #include "bindings/core/v8/V8Binding.h" |
8 #include "bindings/core/v8/V8PerIsolateData.h" | 9 #include "bindings/core/v8/V8PerIsolateData.h" |
9 #include "core/dom/ExecutionContext.h" | 10 #include "core/dom/ExecutionContext.h" |
10 #include "core/workers/WorkerBackingThread.h" | 11 #include "core/workers/WorkerBackingThread.h" |
11 #include "core/workers/WorkerOrWorkletGlobalScope.h" | 12 #include "core/workers/WorkerOrWorkletGlobalScope.h" |
12 #include "core/workers/WorkerThread.h" | 13 #include "core/workers/WorkerThread.h" |
13 #include "platform/CrossThreadFunctional.h" | 14 #include "platform/CrossThreadFunctional.h" |
14 #include "platform/ServiceConnector.h" | 15 #include "platform/ServiceConnector.h" |
15 #include "public/platform/Platform.h" | 16 #include "public/platform/Platform.h" |
16 #include "services/device/public/interfaces/constants.mojom-blink.h" | 17 #include "services/device/public/interfaces/constants.mojom-blink.h" |
17 #include "third_party/icu/source/i18n/unicode/timezone.h" | 18 #include "third_party/icu/source/i18n/unicode/timezone.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 } |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after 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.insert(&thread->workerBackingThread()); | 76 posted.insert(&thread->workerBackingThread()); |
77 } | 77 } |
78 } | 78 } |
79 | 79 |
80 } // namespace blink | 80 } // namespace blink |
OLD | NEW |