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> |
(...skipping 12 matching lines...) Expand all Loading... |
23 #include "ipc/ipc_platform_file.h" | 23 #include "ipc/ipc_platform_file.h" |
24 | 24 |
25 class AppCacheDispatcher; | 25 class AppCacheDispatcher; |
26 class CookieMessageFilter; | 26 class CookieMessageFilter; |
27 class DBMessageFilter; | 27 class DBMessageFilter; |
28 class DevToolsAgentFilter; | 28 class DevToolsAgentFilter; |
29 class FilePath; | 29 class FilePath; |
30 class GpuChannelHost; | 30 class GpuChannelHost; |
31 class IndexedDBDispatcher; | 31 class IndexedDBDispatcher; |
32 class ListValue; | 32 class ListValue; |
33 class NullableString16; | |
34 class RendererHistogram; | 33 class RendererHistogram; |
35 class RendererHistogramSnapshots; | 34 class RendererHistogramSnapshots; |
36 class RendererNetPredictor; | 35 class RendererNetPredictor; |
37 class RendererWebKitClientImpl; | 36 class RendererWebKitClientImpl; |
38 class SpellCheck; | 37 class SpellCheck; |
39 class SkBitmap; | 38 class SkBitmap; |
40 class UserScriptSlave; | 39 class UserScriptSlave; |
41 class URLPattern; | 40 class URLPattern; |
42 class WebDatabaseObserverImpl; | 41 class WebDatabaseObserverImpl; |
43 | 42 |
(...skipping 364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
408 | 407 |
409 // Map of registered v8 extensions. The key is the extension name. The value | 408 // Map of registered v8 extensions. The key is the extension name. The value |
410 // is true if the extension should be restricted to extension-related | 409 // is true if the extension should be restricted to extension-related |
411 // contexts. | 410 // contexts. |
412 std::map<std::string, bool> v8_extensions_; | 411 std::map<std::string, bool> v8_extensions_; |
413 | 412 |
414 DISALLOW_COPY_AND_ASSIGN(RenderThread); | 413 DISALLOW_COPY_AND_ASSIGN(RenderThread); |
415 }; | 414 }; |
416 | 415 |
417 #endif // CHROME_RENDERER_RENDER_THREAD_H_ | 416 #endif // CHROME_RENDERER_RENDER_THREAD_H_ |
OLD | NEW |