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

Unified Diff: chrome/browser/ui/gtk/location_bar_view_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/js_modal_dialog_gtk.h ('k') | chrome/browser/ui/gtk/notifications/balloon_view_gtk.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/gtk/location_bar_view_gtk.h
diff --git a/chrome/browser/ui/gtk/location_bar_view_gtk.h b/chrome/browser/ui/gtk/location_bar_view_gtk.h
index ea558263efca4b6a5dbb2cda5b30a0da4333b529..3abb40363cc73664d81af4fb56be422e48342213 100644
--- a/chrome/browser/ui/gtk/location_bar_view_gtk.h
+++ b/chrome/browser/ui/gtk/location_bar_view_gtk.h
@@ -137,7 +137,7 @@ class LocationBarViewGtk : public AutocompleteEditController,
// Implement the content::NotificationObserver interface.
virtual void Observe(int type,
const content::NotificationSource& source,
- const content::NotificationDetails& details);
+ const content::NotificationDetails& details) OVERRIDE;
// Edit background color.
static const GdkColor kBackgroundColor;
@@ -156,9 +156,9 @@ class LocationBarViewGtk : public AutocompleteEditController,
void UpdateFromTabContents(TabContents* tab_contents);
// Overridden from ui::AnimationDelegate:
- virtual void AnimationProgressed(const ui::Animation* animation);
- virtual void AnimationEnded(const ui::Animation* animation);
- virtual void AnimationCanceled(const ui::Animation* animation);
+ virtual void AnimationProgressed(const ui::Animation* animation) OVERRIDE;
+ virtual void AnimationEnded(const ui::Animation* animation) OVERRIDE;
+ virtual void AnimationCanceled(const ui::Animation* animation) OVERRIDE;
private:
// Start the process of showing the label.
@@ -227,13 +227,13 @@ class LocationBarViewGtk : public AutocompleteEditController,
// A callback from ImageLoadingTracker for when the image has loaded.
virtual void OnImageLoaded(
- SkBitmap* image, const ExtensionResource& resource, int index);
+ SkBitmap* image, const ExtensionResource& resource, int index) OVERRIDE;
// Simulate left mouse click on the page action button.
void TestActivatePageAction();
// Overridden from ExtensionContextMenuModel::PopupDelegate:
- virtual void InspectPopup(ExtensionAction* action);
+ virtual void InspectPopup(ExtensionAction* action) OVERRIDE;
private:
// Show the popup for this page action. If |devtools| is true, show it
« no previous file with comments | « chrome/browser/ui/gtk/js_modal_dialog_gtk.h ('k') | chrome/browser/ui/gtk/notifications/balloon_view_gtk.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698