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

Unified Diff: chrome/browser/extensions/extension_event_router.h

Issue 8515027: Define the public version of the browser side RenderProcessHost interface. This interface is not ... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/extension_event_router.h
===================================================================
--- chrome/browser/extensions/extension_event_router.h (revision 110571)
+++ chrome/browser/extensions/extension_event_router.h (working copy)
@@ -21,7 +21,10 @@
class Extension;
class ExtensionDevToolsManager;
class Profile;
+
+namespace content {
class RenderProcessHost;
+}
class ExtensionEventRouter : public content::NotificationObserver {
public:
@@ -41,10 +44,10 @@
// collapsing. Also, a single extension can have 2 processes if it is a split
// mode extension.
void AddEventListener(const std::string& event_name,
- RenderProcessHost* process,
+ content::RenderProcessHost* process,
const std::string& extension_id);
void RemoveEventListener(const std::string& event_name,
- RenderProcessHost* process,
+ content::RenderProcessHost* process,
const std::string& extension_id);
// Returns true if there is at least one listener for the given event.
« no previous file with comments | « chrome/browser/extensions/extension_crash_recovery_browsertest.cc ('k') | chrome/browser/extensions/extension_event_router.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698