Index: chrome/browser/extensions/chrome_notification_observer.h |
diff --git a/chrome/browser/extensions/chrome_notification_observer.h b/chrome/browser/extensions/chrome_notification_observer.h |
index 42d235a658d8476997243a601be63d2b0d54f2df..a31dc87c525c85415964b0d1ffe1bebc59efba9d 100644 |
--- a/chrome/browser/extensions/chrome_notification_observer.h |
+++ b/chrome/browser/extensions/chrome_notification_observer.h |
@@ -12,6 +12,10 @@ |
class Browser; |
+namespace content { |
+class RenderProcessHost; |
+} |
+ |
namespace extensions { |
// Observer for Chrome-specific notifications that need to be relayed to the |
@@ -21,7 +25,9 @@ class ChromeNotificationObserver : public content::NotificationObserver { |
ChromeNotificationObserver(); |
virtual ~ChromeNotificationObserver(); |
+ // IPC message handlers: |
void OnBrowserWindowReady(Browser* browser); |
+ void OnRendererProcessCreated(content::RenderProcessHost* process); |
// content::NotificationObserver overrides: |
virtual void Observe(int type, |