| Index: chrome/browser/status_icons/desktop_notification_balloon.cc
|
| diff --git a/chrome/browser/status_icons/desktop_notification_balloon.cc b/chrome/browser/status_icons/desktop_notification_balloon.cc
|
| index a0361d4eb66cfd1fd40cb314fa0ce07a41fccf2f..a03d2ff900caf4c01d3a0c88e92e15683e434b9c 100644
|
| --- a/chrome/browser/status_icons/desktop_notification_balloon.cc
|
| +++ b/chrome/browser/status_icons/desktop_notification_balloon.cc
|
| @@ -32,7 +32,6 @@ class DummyNotificationDelegate : public NotificationDelegate {
|
| public:
|
| explicit DummyNotificationDelegate(const std::string& id)
|
| : id_(kNotificationPrefix + id) {}
|
| - virtual ~DummyNotificationDelegate() {}
|
|
|
| virtual void Display() OVERRIDE {
|
| MessageLoop::current()->PostDelayedTask(
|
| @@ -46,6 +45,8 @@ class DummyNotificationDelegate : public NotificationDelegate {
|
| virtual std::string id() const OVERRIDE { return id_; }
|
|
|
| private:
|
| + virtual ~DummyNotificationDelegate() {}
|
| +
|
| std::string id_;
|
| };
|
|
|
|
|