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

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

Issue 100214: Only send events to renderers that are listening to an event.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 7 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 | Annotate | Revision Log
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 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
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_
OLDNEW
« no previous file with comments | « chrome/browser/renderer_host/browser_render_process_host.cc ('k') | chrome/common/render_messages_internal.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698