| Index: chrome/browser/notifications/notification.h
|
| diff --git a/chrome/browser/notifications/notification.h b/chrome/browser/notifications/notification.h
|
| index 4c66aac5089474bb5b37a9c131f8eeb0b28de791..4140f707672592adf247f70a1ad739cef17cf7c3 100644
|
| --- a/chrome/browser/notifications/notification.h
|
| +++ b/chrome/browser/notifications/notification.h
|
| @@ -74,11 +74,6 @@ class Notification : public message_center::Notification {
|
| // Id of the delegate embedded inside this instance.
|
| std::string delegate_id() const { return delegate()->id(); }
|
|
|
| - content::WebContents* GetWebContents() const {
|
| - return delegate()->GetWebContents();
|
| - }
|
| - void DoneRendering() { delegate()->ReleaseRenderViewHost(); }
|
| -
|
| NotificationDelegate* delegate() const { return delegate_.get(); }
|
|
|
| private:
|
| @@ -96,9 +91,6 @@ class Notification : public message_center::Notification {
|
| // The URL of a large image to be displayed for a a rich notification.
|
| GURL image_url_;
|
|
|
| - // The URL of a small image to be displayed for a a rich notification.
|
| - GURL small_image_url_;
|
| -
|
| // The user-supplied replace ID for the notification.
|
| base::string16 replace_id_;
|
|
|
|
|