| 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 |
| 11 #include <set> | 11 #include <set> |
| 12 #include <string> | 12 #include <string> |
| 13 #include <vector> | 13 #include <vector> |
| 14 | 14 |
| 15 #include "base/cancelable_callback.h" | 15 #include "base/cancelable_callback.h" |
| 16 #include "base/macros.h" | 16 #include "base/macros.h" |
| 17 #include "base/memory/memory_pressure_listener.h" | 17 #include "base/memory/memory_pressure_listener.h" |
| 18 #include "base/memory/ref_counted.h" | 18 #include "base/memory/ref_counted.h" |
| 19 #include "base/metrics/user_metrics_action.h" | 19 #include "base/metrics/user_metrics_action.h" |
| 20 #include "base/observer_list.h" | 20 #include "base/observer_list.h" |
| 21 #include "base/strings/string16.h" | 21 #include "base/strings/string16.h" |
| 22 #include "base/threading/thread_checker.h" | 22 #include "base/threading/thread_checker.h" |
| 23 #include "base/timer/timer.h" | 23 #include "base/timer/timer.h" |
| 24 #include "build/build_config.h" | 24 #include "build/build_config.h" |
| 25 #include "content/child/child_thread_impl.h" | 25 #include "content/child/child_thread_impl.h" |
| 26 #include "content/common/content_export.h" | 26 #include "content/common/content_export.h" |
| 27 #include "content/common/frame_replication_state.h" | 27 #include "content/common/frame_replication_state.h" |
| 28 #include "content/common/gpu/client/gpu_channel_host.h" | 28 #include "content/common/gpu/client/gpu_channel_host.h" |
| 29 #include "content/common/gpu_process_launch_causes.h" |
| 29 #include "content/common/storage_partition_service.mojom.h" | 30 #include "content/common/storage_partition_service.mojom.h" |
| 30 #include "content/public/renderer/render_thread.h" | 31 #include "content/public/renderer/render_thread.h" |
| 31 #include "content/renderer/gpu/compositor_dependencies.h" | 32 #include "content/renderer/gpu/compositor_dependencies.h" |
| 32 #include "net/base/network_change_notifier.h" | 33 #include "net/base/network_change_notifier.h" |
| 33 #include "third_party/WebKit/public/platform/WebConnectionType.h" | 34 #include "third_party/WebKit/public/platform/WebConnectionType.h" |
| 34 #include "ui/gfx/native_widget_types.h" | 35 #include "ui/gfx/native_widget_types.h" |
| 35 | 36 |
| 36 #if defined(OS_MACOSX) | 37 #if defined(OS_MACOSX) |
| 37 #include "third_party/WebKit/public/web/mac/WebScrollbarTheme.h" | 38 #include "third_party/WebKit/public/web/mac/WebScrollbarTheme.h" |
| 38 #endif | 39 #endif |
| (...skipping 671 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 710 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); | 711 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); |
| 711 }; | 712 }; |
| 712 | 713 |
| 713 #if defined(COMPILER_MSVC) | 714 #if defined(COMPILER_MSVC) |
| 714 #pragma warning(pop) | 715 #pragma warning(pop) |
| 715 #endif | 716 #endif |
| 716 | 717 |
| 717 } // namespace content | 718 } // namespace content |
| 718 | 719 |
| 719 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ | 720 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ |
| OLD | NEW |