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

Unified Diff: chrome/browser/ui/gtk/infobars/extension_infobar_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
Index: chrome/browser/ui/gtk/infobars/extension_infobar_gtk.h
diff --git a/chrome/browser/ui/gtk/infobars/extension_infobar_gtk.h b/chrome/browser/ui/gtk/infobars/extension_infobar_gtk.h
index fc07baecd4782d84cab7a84f2dad043fcd15d23d..fd8e7bc4454ada0cf8df11c17474944b95f7f9b9 100644
--- a/chrome/browser/ui/gtk/infobars/extension_infobar_gtk.h
+++ b/chrome/browser/ui/gtk/infobars/extension_infobar_gtk.h
@@ -6,6 +6,7 @@
#define CHROME_BROWSER_UI_GTK_INFOBARS_EXTENSION_INFOBAR_GTK_H_
#pragma once
+#include "base/compiler_specific.h"
#include "chrome/browser/extensions/extension_infobar_delegate.h"
#include "chrome/browser/extensions/image_loading_tracker.h"
#include "chrome/browser/ui/gtk/extensions/extension_view_gtk.h"
@@ -26,20 +27,20 @@ class ExtensionInfoBarGtk : public InfoBarGtk,
virtual ~ExtensionInfoBarGtk();
// Overridden from InfoBar (through InfoBarGtk):
- virtual void PlatformSpecificHide(bool animate);
+ virtual void PlatformSpecificHide(bool animate) OVERRIDE;
// Overridden from InfoBarGtk:
virtual void GetTopColor(InfoBarDelegate::Type type,
- double* r, double* g, double* b);
+ double* r, double* g, double* b) OVERRIDE;
virtual void GetBottomColor(InfoBarDelegate::Type type,
- double* r, double* g, double* b);
+ double* r, double* g, double* b) OVERRIDE;
// Overridden from ImageLoadingTracker::Observer:
virtual void OnImageLoaded(
- SkBitmap* image, const ExtensionResource& resource, int index);
+ SkBitmap* image, const ExtensionResource& resource, int index) OVERRIDE;
// Overridden from MenuGtk::Delegate:
- virtual void StoppedShowing();
+ virtual void StoppedShowing() OVERRIDE;
private:
// Build the widgets of the Infobar.

Powered by Google App Engine
This is Rietveld 408576698