| Index: chrome/browser/notifications/notification_object_proxy.h
|
| diff --git a/chrome/browser/notifications/notification_object_proxy.h b/chrome/browser/notifications/notification_object_proxy.h
|
| index ea8c8ae31dfeb8c4726a584ec9a3405fd01b8e90..0f6045802995833f50cfb67fa195e5cb1d517c14 100644
|
| --- a/chrome/browser/notifications/notification_object_proxy.h
|
| +++ b/chrome/browser/notifications/notification_object_proxy.h
|
| @@ -25,7 +25,6 @@ class NotificationObjectProxy
|
| // Creates a Proxy object with the necessary callback information. The Proxy
|
| // will take ownership of |delegate|.
|
| NotificationObjectProxy(
|
| - content::RenderFrameHost* render_frame_host,
|
| scoped_ptr<content::DesktopNotificationDelegate> delegate);
|
|
|
| // NotificationDelegate implementation.
|
| @@ -34,7 +33,6 @@ class NotificationObjectProxy
|
| virtual void Close(bool by_user) OVERRIDE;
|
| virtual void Click() OVERRIDE;
|
| virtual std::string id() const OVERRIDE;
|
| - virtual content::WebContents* GetWebContents() const OVERRIDE;
|
|
|
| protected:
|
| friend class base::RefCountedThreadSafe<NotificationObjectProxy>;
|
| @@ -42,9 +40,6 @@ class NotificationObjectProxy
|
| virtual ~NotificationObjectProxy();
|
|
|
| private:
|
| - // Callback information to find the JS Notification object where it lives.
|
| - int render_process_id_;
|
| - int render_frame_id_;
|
| scoped_ptr<content::DesktopNotificationDelegate> delegate_;
|
| bool displayed_;
|
| std::string id_;
|
|
|