Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(440)

Side by Side Diff: chrome/browser/renderer_host/render_process_host.h

Issue 164428: Move IDMap from base/ to common/ (Closed)
Patch Set: Created 11 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/browser/chrome_plugin_browsing_context.h ('k') | chrome/chrome.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 #include <string>
10 10
11 #include "base/id_map.h"
12 #include "base/process.h" 11 #include "base/process.h"
13 #include "base/scoped_ptr.h" 12 #include "base/scoped_ptr.h"
13 #include "chrome/common/id_map.h"
14 #include "chrome/common/transport_dib.h" 14 #include "chrome/common/transport_dib.h"
15 #include "chrome/common/visitedlink_common.h" 15 #include "chrome/common/visitedlink_common.h"
16 #include "ipc/ipc_sync_channel.h" 16 #include "ipc/ipc_sync_channel.h"
17 17
18 class Profile; 18 class Profile;
19 struct ViewMsg_ClosePage_Params; 19 struct ViewMsg_ClosePage_Params;
20 20
21 // Virtual interface that represents the browser side of the browser <-> 21 // Virtual interface that represents the browser side of the browser <->
22 // renderer communication channel. There will generally be one 22 // renderer communication channel. There will generally be one
23 // RenderProcessHost per renderer process. 23 // RenderProcessHost per renderer process.
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after
265 // Factory object for RenderProcessHosts. Using this factory allows tests to 265 // Factory object for RenderProcessHosts. Using this factory allows tests to
266 // swap out a different one to use a TestRenderProcessHost. 266 // swap out a different one to use a TestRenderProcessHost.
267 class RenderProcessHostFactory { 267 class RenderProcessHostFactory {
268 public: 268 public:
269 virtual ~RenderProcessHostFactory() {} 269 virtual ~RenderProcessHostFactory() {}
270 virtual RenderProcessHost* CreateRenderProcessHost( 270 virtual RenderProcessHost* CreateRenderProcessHost(
271 Profile* profile) const = 0; 271 Profile* profile) const = 0;
272 }; 272 };
273 273
274 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_H_ 274 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_H_
OLDNEW
« no previous file with comments | « chrome/browser/chrome_plugin_browsing_context.h ('k') | chrome/chrome.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698