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_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_H_ | 5 #ifndef CHROME_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_H_ |
6 #define CHROME_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_H_ | 6 #define CHROME_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_H_ |
7 | 7 |
8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
9 | 9 |
10 #include <map> | 10 #include <map> |
11 #include <string> | 11 #include <string> |
12 | 12 |
13 #include "base/process.h" | 13 #include "base/process.h" |
14 #include "base/ref_counted.h" | 14 #include "base/ref_counted.h" |
15 #include "base/scoped_ptr.h" | 15 #include "base/scoped_ptr.h" |
16 #include "base/shared_memory.h" | 16 #include "base/shared_memory.h" |
17 #include "base/string16.h" | 17 #include "base/string16.h" |
18 #include "base/timer.h" | 18 #include "base/timer.h" |
19 #include "chrome/common/transport_dib.h" | 19 #include "chrome/common/transport_dib.h" |
20 #include "chrome/browser/renderer_host/render_process_host.h" | 20 #include "chrome/browser/renderer_host/render_process_host.h" |
21 #include "chrome/common/notification_registrar.h" | 21 #include "chrome/common/notification_registrar.h" |
22 #include "webkit/api/public/WebCache.h" | 22 #include "third_party/WebKit/WebKit/chromium/public/WebCache.h" |
23 | 23 |
24 class AudioRendererHost; | 24 class AudioRendererHost; |
25 class CommandLine; | 25 class CommandLine; |
26 class GURL; | 26 class GURL; |
27 class RendererMainThread; | 27 class RendererMainThread; |
28 class RenderWidgetHelper; | 28 class RenderWidgetHelper; |
29 class TabContents; | 29 class TabContents; |
30 class VisitedLinkUpdater; | 30 class VisitedLinkUpdater; |
31 | 31 |
32 namespace gfx { | 32 namespace gfx { |
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
202 // Buffer visited links and send them to to renderer. | 202 // Buffer visited links and send them to to renderer. |
203 scoped_ptr<VisitedLinkUpdater> visited_link_updater_; | 203 scoped_ptr<VisitedLinkUpdater> visited_link_updater_; |
204 | 204 |
205 // True iff the renderer is a child of a zygote process. | 205 // True iff the renderer is a child of a zygote process. |
206 bool zygote_child_; | 206 bool zygote_child_; |
207 | 207 |
208 DISALLOW_COPY_AND_ASSIGN(BrowserRenderProcessHost); | 208 DISALLOW_COPY_AND_ASSIGN(BrowserRenderProcessHost); |
209 }; | 209 }; |
210 | 210 |
211 #endif // CHROME_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_H_ | 211 #endif // CHROME_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_H_ |
OLD | NEW |