| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 CONTENT_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_IMPL_H_ |
| 6 #define CONTENT_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_IMPL_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_IMPL_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <queue> | 9 #include <queue> |
| 10 #include <string> | 10 #include <string> |
| 11 | 11 |
| 12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
| 13 #include "base/process.h" | 13 #include "base/process.h" |
| 14 #include "base/timer.h" | 14 #include "base/timer.h" |
| 15 #include "content/browser/child_process_launcher.h" | 15 #include "content/browser/child_process_launcher.h" |
| 16 #include "content/common/content_export.h" | 16 #include "content/common/content_export.h" |
| 17 #include "content/public/browser/render_process_host.h" | 17 #include "content/public/browser/render_process_host.h" |
| 18 #include "ipc/ipc_channel_proxy.h" | 18 #include "ipc/ipc_channel_proxy.h" |
| 19 #include "ui/surface/transport_dib.h" | 19 #include "ui/surface/transport_dib.h" |
| 20 | 20 |
| 21 class CommandLine; | 21 class CommandLine; |
| 22 class GpuMessageFilter; | |
| 23 class RenderWidgetHelper; | |
| 24 | 22 |
| 25 namespace content { | 23 namespace content { |
| 24 class GpuMessageFilter; |
| 26 class RendererMainThread; | 25 class RendererMainThread; |
| 26 class RenderWidgetHelper; |
| 27 class RenderWidgetHost; | 27 class RenderWidgetHost; |
| 28 class RenderWidgetHostImpl; | 28 class RenderWidgetHostImpl; |
| 29 | 29 |
| 30 // Implements a concrete RenderProcessHost for the browser process for talking | 30 // Implements a concrete RenderProcessHost for the browser process for talking |
| 31 // to actual renderer processes (as opposed to mocks). | 31 // to actual renderer processes (as opposed to mocks). |
| 32 // | 32 // |
| 33 // Represents the browser side of the browser <--> renderer communication | 33 // Represents the browser side of the browser <--> renderer communication |
| 34 // channel. There will be one RenderProcessHost per renderer process. | 34 // channel. There will be one RenderProcessHost per renderer process. |
| 35 // | 35 // |
| 36 // This object is refcounted so that it can release its resources when all | 36 // This object is refcounted so that it can release its resources when all |
| (...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 276 // Indicates whether this is a RenderProcessHost of a Browser Plugin guest | 276 // Indicates whether this is a RenderProcessHost of a Browser Plugin guest |
| 277 // renderer. | 277 // renderer. |
| 278 bool is_guest_; | 278 bool is_guest_; |
| 279 | 279 |
| 280 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); | 280 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); |
| 281 }; | 281 }; |
| 282 | 282 |
| 283 } // namespace content | 283 } // namespace content |
| 284 | 284 |
| 285 #endif // CONTENT_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_IMPL_H_ | 285 #endif // CONTENT_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_IMPL_H_ |
| OLD | NEW |