| 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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #include "base/observer_list.h" | 13 #include "base/observer_list.h" |
| 14 #include "base/time.h" | 14 #include "base/time.h" |
| 15 #include "base/timer.h" | 15 #include "base/timer.h" |
| 16 #include "build/build_config.h" | 16 #include "build/build_config.h" |
| 17 #include "content/common/child_process.h" | 17 #include "content/common/child_process.h" |
| 18 #include "content/common/child_thread.h" | 18 #include "content/common/child_thread.h" |
| 19 #include "content/common/content_export.h" | 19 #include "content/common/content_export.h" |
| 20 #include "content/common/css_colors.h" | 20 #include "content/common/css_colors.h" |
| 21 #include "content/common/gpu/client/gpu_channel_host.h" |
| 21 #include "content/common/gpu/gpu_process_launch_causes.h" | 22 #include "content/common/gpu/gpu_process_launch_causes.h" |
| 22 #include "content/public/renderer/render_thread.h" | 23 #include "content/public/renderer/render_thread.h" |
| 23 #include "content/renderer/gpu/gpu_channel_host.h" | |
| 24 #include "ipc/ipc_channel_proxy.h" | 24 #include "ipc/ipc_channel_proxy.h" |
| 25 #include "ui/gfx/native_widget_types.h" | 25 #include "ui/gfx/native_widget_types.h" |
| 26 | 26 |
| 27 class AppCacheDispatcher; | 27 class AppCacheDispatcher; |
| 28 class AudioInputMessageFilter; | 28 class AudioInputMessageFilter; |
| 29 class AudioMessageFilter; | 29 class AudioMessageFilter; |
| 30 class CompositorThread; | 30 class CompositorThread; |
| 31 class DBMessageFilter; | 31 class DBMessageFilter; |
| 32 class DevToolsAgentFilter; | 32 class DevToolsAgentFilter; |
| 33 struct DOMStorageMsg_Event_Params; | 33 struct DOMStorageMsg_Event_Params; |
| (...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 | 256 |
| 257 bool compositor_initialized_; | 257 bool compositor_initialized_; |
| 258 scoped_ptr<CompositorThread> compositor_thread_; | 258 scoped_ptr<CompositorThread> compositor_thread_; |
| 259 | 259 |
| 260 ObserverList<content::RenderProcessObserver> observers_; | 260 ObserverList<content::RenderProcessObserver> observers_; |
| 261 | 261 |
| 262 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); | 262 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); |
| 263 }; | 263 }; |
| 264 | 264 |
| 265 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ | 265 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ |
| OLD | NEW |