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_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_H_ | 5 #ifndef CHROME_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_H_ |
6 #define CHROME_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_H_ | 6 #define CHROME_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_H_ |
7 | 7 |
8 #include <set> | 8 #include <set> |
| 9 #include <string> |
9 | 10 |
10 #include "base/id_map.h" | 11 #include "base/id_map.h" |
11 #include "base/process.h" | 12 #include "base/process.h" |
12 #include "base/scoped_ptr.h" | 13 #include "base/scoped_ptr.h" |
13 #include "chrome/common/ipc_sync_channel.h" | 14 #include "chrome/common/ipc_sync_channel.h" |
14 #include "chrome/common/transport_dib.h" | 15 #include "chrome/common/transport_dib.h" |
15 | 16 |
16 class Profile; | 17 class Profile; |
17 | 18 |
18 // Virtual interface that represents the browser side of the browser <-> | 19 // Virtual interface that represents the browser side of the browser <-> |
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
220 // Factory object for RenderProcessHosts. Using this factory allows tests to | 221 // Factory object for RenderProcessHosts. Using this factory allows tests to |
221 // swap out a different one to use a TestRenderProcessHost. | 222 // swap out a different one to use a TestRenderProcessHost. |
222 class RenderProcessHostFactory { | 223 class RenderProcessHostFactory { |
223 public: | 224 public: |
224 virtual ~RenderProcessHostFactory() {} | 225 virtual ~RenderProcessHostFactory() {} |
225 virtual RenderProcessHost* CreateRenderProcessHost( | 226 virtual RenderProcessHost* CreateRenderProcessHost( |
226 Profile* profile) const = 0; | 227 Profile* profile) const = 0; |
227 }; | 228 }; |
228 | 229 |
229 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_H_ | 230 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_H_ |
OLD | NEW |