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

Unified Diff: chrome/browser/status_icons/desktop_notification_balloon.cc

Issue 10071036: RefCounted types should not have public destructors, chrome/browser/ part 6 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Implementation fixes Created 8 years, 8 months 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
« no previous file with comments | « chrome/browser/ssl/ssl_client_auth_requestor_mock.cc ('k') | chrome/browser/user_style_sheet_watcher.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_;
};
« no previous file with comments | « chrome/browser/ssl/ssl_client_auth_requestor_mock.cc ('k') | chrome/browser/user_style_sheet_watcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698