diff options
author | johnnyg@chromium.org <johnnyg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-04-07 19:55:00 +0000 |
---|---|---|
committer | johnnyg@chromium.org <johnnyg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-04-07 19:55:00 +0000 |
commit | 2e817e3527ff2cd9b767d55f53660e296b348aad (patch) | |
tree | d8d97fa4909b4264593db2ced617bcd0c565bcb0 | |
parent | c11caa777b259f830e9fc41e452e3a9aacb554ba (diff) | |
download | chromium_src-2e817e3527ff2cd9b767d55f53660e296b348aad.zip chromium_src-2e817e3527ff2cd9b767d55f53660e296b348aad.tar.gz chromium_src-2e817e3527ff2cd9b767d55f53660e296b348aad.tar.bz2 |
notifications: No need to override no pure virtual functions.
BUG=None
TEST=compiles and the menu still works as before.
Review URL: http://codereview.chromium.org/1601007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@43866 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/browser/gtk/notifications/balloon_view_gtk.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/chrome/browser/gtk/notifications/balloon_view_gtk.h b/chrome/browser/gtk/notifications/balloon_view_gtk.h index 96d2930..9655f85 100644 --- a/chrome/browser/gtk/notifications/balloon_view_gtk.h +++ b/chrome/browser/gtk/notifications/balloon_view_gtk.h @@ -47,16 +47,6 @@ class BalloonViewImpl : public BalloonView, virtual gfx::Size GetSize() const; private: - // MenuGtk::Delegate interface. These methods shouldn't actually be - // called because we are using a MenuModel which handles these callbacks. - virtual bool IsCommandEnabled(int command_id) const { - NOTIMPLEMENTED(); - return true; - } - virtual void ExecuteCommand(int command_id) { - NOTIMPLEMENTED(); - } - // NotificationObserver interface. virtual void Observe(NotificationType type, const NotificationSource& source, |