| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 CHROME_RENDERER_RENDER_THREAD_H_ | 5 #ifndef CHROME_RENDERER_RENDER_THREAD_H_ |
| 6 #define CHROME_RENDERER_RENDER_THREAD_H_ | 6 #define CHROME_RENDERER_RENDER_THREAD_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <map> | 9 #include <map> |
| 10 #include <string> | 10 #include <string> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #include "base/shared_memory.h" | 13 #include "base/shared_memory.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 "chrome/common/child_thread.h" | 17 #include "chrome/common/child_thread.h" |
| 18 #include "chrome/common/css_colors.h" | 18 #include "chrome/common/css_colors.h" |
| 19 #include "chrome/common/extensions/extension_set.h" | 19 #include "chrome/common/extensions/extension_set.h" |
| 20 #include "chrome/common/gpu_info.h" | 20 #include "chrome/common/gpu_info.h" |
| 21 #include "chrome/renderer/visitedlink_slave.h" | 21 #include "chrome/renderer/visitedlink_slave.h" |
| 22 #include "gfx/native_widget_types.h" | |
| 23 #include "ipc/ipc_channel_proxy.h" | 22 #include "ipc/ipc_channel_proxy.h" |
| 24 #include "ipc/ipc_platform_file.h" | 23 #include "ipc/ipc_platform_file.h" |
| 24 #include "ui/gfx/native_widget_types.h" |
| 25 | 25 |
| 26 class AppCacheDispatcher; | 26 class AppCacheDispatcher; |
| 27 class CookieMessageFilter; | 27 class CookieMessageFilter; |
| 28 class DBMessageFilter; | 28 class DBMessageFilter; |
| 29 class DevToolsAgentFilter; | 29 class DevToolsAgentFilter; |
| 30 class ExtensionSet; | 30 class ExtensionSet; |
| 31 class FilePath; | 31 class FilePath; |
| 32 class GpuChannelHost; | 32 class GpuChannelHost; |
| 33 class IndexedDBDispatcher; | 33 class IndexedDBDispatcher; |
| 34 class ListValue; | 34 class ListValue; |
| (...skipping 385 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 420 // contexts. | 420 // contexts. |
| 421 std::map<std::string, bool> v8_extensions_; | 421 std::map<std::string, bool> v8_extensions_; |
| 422 | 422 |
| 423 // Contains all loaded extensions. | 423 // Contains all loaded extensions. |
| 424 ExtensionSet extensions_; | 424 ExtensionSet extensions_; |
| 425 | 425 |
| 426 DISALLOW_COPY_AND_ASSIGN(RenderThread); | 426 DISALLOW_COPY_AND_ASSIGN(RenderThread); |
| 427 }; | 427 }; |
| 428 | 428 |
| 429 #endif // CHROME_RENDERER_RENDER_THREAD_H_ | 429 #endif // CHROME_RENDERER_RENDER_THREAD_H_ |
| OLD | NEW |