OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <map> | 9 #include <map> |
10 #include <queue> | 10 #include <queue> |
11 #include <string> | 11 #include <string> |
12 | 12 |
13 #include "app/surface/transport_dib.h" | |
14 #include "base/platform_file.h" | 13 #include "base/platform_file.h" |
15 #include "base/process.h" | 14 #include "base/process.h" |
16 #include "base/scoped_callback_factory.h" | 15 #include "base/scoped_callback_factory.h" |
17 #include "base/scoped_ptr.h" | 16 #include "base/scoped_ptr.h" |
18 #include "base/timer.h" | 17 #include "base/timer.h" |
19 #include "chrome/common/extensions/extension.h" | 18 #include "chrome/common/extensions/extension.h" |
20 #include "content/browser/child_process_launcher.h" | 19 #include "content/browser/child_process_launcher.h" |
21 #include "content/browser/renderer_host/render_process_host.h" | 20 #include "content/browser/renderer_host/render_process_host.h" |
22 #include "content/common/notification_observer.h" | 21 #include "content/common/notification_observer.h" |
23 #include "content/common/notification_registrar.h" | 22 #include "content/common/notification_registrar.h" |
24 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCache.h" | 23 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCache.h" |
| 24 #include "ui/gfx/surface/transport_dib.h" |
25 | 25 |
26 class CommandLine; | 26 class CommandLine; |
27 class RendererMainThread; | 27 class RendererMainThread; |
28 class RenderWidgetHelper; | 28 class RenderWidgetHelper; |
29 class VisitedLinkUpdater; | 29 class VisitedLinkUpdater; |
30 | 30 |
31 namespace base { | 31 namespace base { |
32 class SharedMemory; | 32 class SharedMemory; |
33 } | 33 } |
34 | 34 |
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
217 // messages that are sent once the process handle is available. This is | 217 // messages that are sent once the process handle is available. This is |
218 // because the queued messages may have dependencies on the init messages. | 218 // because the queued messages may have dependencies on the init messages. |
219 std::queue<IPC::Message*> queued_messages_; | 219 std::queue<IPC::Message*> queued_messages_; |
220 | 220 |
221 base::ScopedCallbackFactory<BrowserRenderProcessHost> callback_factory_; | 221 base::ScopedCallbackFactory<BrowserRenderProcessHost> callback_factory_; |
222 | 222 |
223 DISALLOW_COPY_AND_ASSIGN(BrowserRenderProcessHost); | 223 DISALLOW_COPY_AND_ASSIGN(BrowserRenderProcessHost); |
224 }; | 224 }; |
225 | 225 |
226 #endif // CHROME_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_H_ | 226 #endif // CHROME_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_H_ |
OLD | NEW |