OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/gfx/native_widget_types.h" | 11 #include "app/gfx/native_widget_types.h" |
12 #include "base/shared_memory.h" | 12 #include "base/shared_memory.h" |
13 #include "base/task.h" | 13 #include "base/task.h" |
14 #include "build/build_config.h" | 14 #include "build/build_config.h" |
15 #include "chrome/common/child_thread.h" | 15 #include "chrome/common/child_thread.h" |
16 #include "chrome/common/css_colors.h" | 16 #include "chrome/common/css_colors.h" |
17 #include "chrome/common/dom_storage_type.h" | 17 #include "chrome/common/dom_storage_type.h" |
18 #include "chrome/renderer/renderer_histogram_snapshots.h" | 18 #include "chrome/renderer/renderer_histogram_snapshots.h" |
19 #include "chrome/renderer/visitedlink_slave.h" | 19 #include "chrome/renderer/visitedlink_slave.h" |
20 | 20 |
21 class AppCacheDispatcher; | 21 class AppCacheDispatcher; |
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
221 // The count of hidden RenderWidgets running through this thread. | 221 // The count of hidden RenderWidgets running through this thread. |
222 int hidden_widget_count_; | 222 int hidden_widget_count_; |
223 | 223 |
224 // The current value of the idle notification timer delay. | 224 // The current value of the idle notification timer delay. |
225 double idle_notification_delay_in_s_; | 225 double idle_notification_delay_in_s_; |
226 | 226 |
227 DISALLOW_COPY_AND_ASSIGN(RenderThread); | 227 DISALLOW_COPY_AND_ASSIGN(RenderThread); |
228 }; | 228 }; |
229 | 229 |
230 #endif // CHROME_RENDERER_RENDER_THREAD_H_ | 230 #endif // CHROME_RENDERER_RENDER_THREAD_H_ |
OLD | NEW |