OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #ifndef CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ |
6 #define CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
(...skipping 14 matching lines...) Expand all Loading... |
25 #include "components/memory_coordinator/child/child_memory_coordinator_impl.h" | 25 #include "components/memory_coordinator/child/child_memory_coordinator_impl.h" |
26 #include "content/child/child_thread_impl.h" | 26 #include "content/child/child_thread_impl.h" |
27 #include "content/common/content_export.h" | 27 #include "content/common/content_export.h" |
28 #include "content/common/frame.mojom.h" | 28 #include "content/common/frame.mojom.h" |
29 #include "content/common/frame_replication_state.h" | 29 #include "content/common/frame_replication_state.h" |
30 #include "content/common/render_frame_message_filter.mojom.h" | 30 #include "content/common/render_frame_message_filter.mojom.h" |
31 #include "content/common/storage_partition_service.mojom.h" | 31 #include "content/common/storage_partition_service.mojom.h" |
32 #include "content/public/renderer/render_thread.h" | 32 #include "content/public/renderer/render_thread.h" |
33 #include "content/renderer/gpu/compositor_dependencies.h" | 33 #include "content/renderer/gpu/compositor_dependencies.h" |
34 #include "content/renderer/layout_test_dependencies.h" | 34 #include "content/renderer/layout_test_dependencies.h" |
| 35 #include "device/time/public/interfaces/time_zone_monitor.mojom.h" |
35 #include "gpu/ipc/client/gpu_channel_host.h" | 36 #include "gpu/ipc/client/gpu_channel_host.h" |
36 #include "net/base/network_change_notifier.h" | 37 #include "net/base/network_change_notifier.h" |
37 #include "third_party/WebKit/public/platform/WebConnectionType.h" | 38 #include "third_party/WebKit/public/platform/WebConnectionType.h" |
38 #include "third_party/WebKit/public/platform/scheduler/renderer/renderer_schedul
er.h" | 39 #include "third_party/WebKit/public/platform/scheduler/renderer/renderer_schedul
er.h" |
39 #include "ui/gfx/native_widget_types.h" | 40 #include "ui/gfx/native_widget_types.h" |
40 | 41 |
41 #if defined(OS_MACOSX) | 42 #if defined(OS_MACOSX) |
42 #include "third_party/WebKit/public/web/mac/WebScrollbarTheme.h" | 43 #include "third_party/WebKit/public/web/mac/WebScrollbarTheme.h" |
43 #endif | 44 #endif |
44 | 45 |
(...skipping 657 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
702 }; | 703 }; |
703 | 704 |
704 using PendingFrameCreateMap = | 705 using PendingFrameCreateMap = |
705 std::map<int, scoped_refptr<PendingFrameCreate>>; | 706 std::map<int, scoped_refptr<PendingFrameCreate>>; |
706 PendingFrameCreateMap pending_frame_creates_; | 707 PendingFrameCreateMap pending_frame_creates_; |
707 | 708 |
708 mojom::StoragePartitionServicePtr storage_partition_service_; | 709 mojom::StoragePartitionServicePtr storage_partition_service_; |
709 | 710 |
710 mojom::RenderFrameMessageFilterAssociatedPtr render_frame_message_filter_; | 711 mojom::RenderFrameMessageFilterAssociatedPtr render_frame_message_filter_; |
711 | 712 |
| 713 device::mojom::TimeZoneMonitorPtr time_zone_monitor_; |
| 714 |
712 bool is_renderer_suspended_; | 715 bool is_renderer_suspended_; |
713 | 716 |
714 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); | 717 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); |
715 }; | 718 }; |
716 | 719 |
717 #if defined(COMPILER_MSVC) | 720 #if defined(COMPILER_MSVC) |
718 #pragma warning(pop) | 721 #pragma warning(pop) |
719 #endif | 722 #endif |
720 | 723 |
721 } // namespace content | 724 } // namespace content |
722 | 725 |
723 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ | 726 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ |
OLD | NEW |