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 <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "base/shared_memory.h" | 12 #include "base/shared_memory.h" |
13 #include "base/string16.h" | |
14 #include "base/time.h" | 13 #include "base/time.h" |
15 #include "base/timer.h" | 14 #include "base/timer.h" |
16 #include "build/build_config.h" | 15 #include "build/build_config.h" |
17 #include "chrome/common/child_thread.h" | 16 #include "chrome/common/child_thread.h" |
18 #include "chrome/common/css_colors.h" | 17 #include "chrome/common/css_colors.h" |
19 #include "chrome/renderer/visitedlink_slave.h" | 18 #include "chrome/renderer/visitedlink_slave.h" |
20 #include "gfx/native_widget_types.h" | 19 #include "gfx/native_widget_types.h" |
21 #include "ipc/ipc_channel_proxy.h" | 20 #include "ipc/ipc_channel_proxy.h" |
22 #include "ipc/ipc_platform_file.h" | 21 #include "ipc/ipc_platform_file.h" |
23 | 22 |
(...skipping 339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
363 | 362 |
364 // A list of extension web extents, which tells us which URLs belong to an | 363 // A list of extension web extents, which tells us which URLs belong to an |
365 // installed app. | 364 // installed app. |
366 struct ExtensionInfo; | 365 struct ExtensionInfo; |
367 std::vector<ExtensionInfo> extension_extents_; | 366 std::vector<ExtensionInfo> extension_extents_; |
368 | 367 |
369 DISALLOW_COPY_AND_ASSIGN(RenderThread); | 368 DISALLOW_COPY_AND_ASSIGN(RenderThread); |
370 }; | 369 }; |
371 | 370 |
372 #endif // CHROME_RENDERER_RENDER_THREAD_H_ | 371 #endif // CHROME_RENDERER_RENDER_THREAD_H_ |
OLD | NEW |