OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/gfx/native_widget_types.h" | 10 #include "base/gfx/native_widget_types.h" |
11 #include "base/shared_memory.h" | 11 #include "base/shared_memory.h" |
12 #include "base/task.h" | 12 #include "base/task.h" |
13 #include "build/build_config.h" | 13 #include "build/build_config.h" |
14 #include "chrome/common/child_thread.h" | 14 #include "chrome/common/child_thread.h" |
15 #include "chrome/renderer/renderer_histogram_snapshots.h" | 15 #include "chrome/renderer/renderer_histogram_snapshots.h" |
16 | 16 |
| 17 class AppCacheDispatcher; |
17 class FilePath; | 18 class FilePath; |
18 class NotificationService; | 19 class NotificationService; |
19 class RenderDnsMaster; | 20 class RenderDnsMaster; |
20 class RendererHistogram; | 21 class RendererHistogram; |
21 class RendererWebKitClientImpl; | 22 class RendererWebKitClientImpl; |
22 class SkBitmap; | 23 class SkBitmap; |
23 class UserScriptSlave; | 24 class UserScriptSlave; |
24 class VisitedLinkSlave; | 25 class VisitedLinkSlave; |
25 struct ModalDialogEvent; | 26 struct ModalDialogEvent; |
26 struct WebPreferences; | 27 struct WebPreferences; |
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
141 scoped_ptr<RenderDnsMaster> dns_master_; | 142 scoped_ptr<RenderDnsMaster> dns_master_; |
142 | 143 |
143 scoped_ptr<RendererHistogramSnapshots> histogram_snapshots_; | 144 scoped_ptr<RendererHistogramSnapshots> histogram_snapshots_; |
144 | 145 |
145 scoped_ptr<ScopedRunnableMethodFactory<RenderThread> > cache_stats_factory_; | 146 scoped_ptr<ScopedRunnableMethodFactory<RenderThread> > cache_stats_factory_; |
146 | 147 |
147 scoped_ptr<NotificationService> notification_service_; | 148 scoped_ptr<NotificationService> notification_service_; |
148 | 149 |
149 scoped_ptr<RendererWebKitClientImpl> webkit_client_; | 150 scoped_ptr<RendererWebKitClientImpl> webkit_client_; |
150 | 151 |
| 152 scoped_ptr<AppCacheDispatcher> app_cache_dispatcher_; |
| 153 |
151 DISALLOW_COPY_AND_ASSIGN(RenderThread); | 154 DISALLOW_COPY_AND_ASSIGN(RenderThread); |
152 }; | 155 }; |
153 | 156 |
154 #endif // CHROME_RENDERER_RENDER_THREAD_H_ | 157 #endif // CHROME_RENDERER_RENDER_THREAD_H_ |
OLD | NEW |