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

Unified Diff: chrome/browser/ui/gtk/browser_toolbar_gtk.h

Issue 8632022: Add OVERRIDE to chrome/browser/ui/gtk/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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/ui/gtk/browser_titlebar.h ('k') | chrome/browser/ui/gtk/browser_window_gtk.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/gtk/browser_toolbar_gtk.h
diff --git a/chrome/browser/ui/gtk/browser_toolbar_gtk.h b/chrome/browser/ui/gtk/browser_toolbar_gtk.h
index e51b17211606678b223ff05e378b156bf158c632..4e74e561ad2c1f87683891a3d21a3ff3a0627e76 100644
--- a/chrome/browser/ui/gtk/browser_toolbar_gtk.h
+++ b/chrome/browser/ui/gtk/browser_toolbar_gtk.h
@@ -9,6 +9,7 @@
#include <gtk/gtk.h>
#include <string>
+#include "base/compiler_specific.h"
#include "base/memory/scoped_ptr.h"
#include "chrome/browser/command_updater.h"
#include "chrome/browser/prefs/pref_member.h"
@@ -84,21 +85,22 @@ class BrowserToolbarGtk : public CommandUpdater::CommandObserver,
void ShowAppMenu();
// Overridden from CommandUpdater::CommandObserver:
- virtual void EnabledStateChangedForCommand(int id, bool enabled);
+ virtual void EnabledStateChangedForCommand(int id, bool enabled) OVERRIDE;
// Overridden from MenuGtk::Delegate:
- virtual void StoppedShowing();
- virtual GtkIconSet* GetIconSetForId(int idr);
- virtual bool AlwaysShowIconForCmd(int command_id) const;
+ virtual void StoppedShowing() OVERRIDE;
+ virtual GtkIconSet* GetIconSetForId(int idr) OVERRIDE;
+ virtual bool AlwaysShowIconForCmd(int command_id) const OVERRIDE;
// Overridden from ui::AcceleratorProvider:
- virtual bool GetAcceleratorForCommandId(int id,
- ui::Accelerator* accelerator);
+ virtual bool GetAcceleratorForCommandId(
+ int id,
+ ui::Accelerator* accelerator) OVERRIDE;
// content::NotificationObserver implementation.
virtual void Observe(int type,
const content::NotificationSource& source,
- const content::NotificationDetails& details);
+ const content::NotificationDetails& details) OVERRIDE;
// Message that we should react to a state change.
void UpdateTabContents(TabContents* contents, bool should_restore_state);
« no previous file with comments | « chrome/browser/ui/gtk/browser_titlebar.h ('k') | chrome/browser/ui/gtk/browser_window_gtk.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698