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

Unified Diff: chrome/browser/ui/cocoa/location_bar/keyword_hint_decoration.h

Issue 671653002: Standardize usage of virtual/override/final in chrome/browser/ui/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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
Index: chrome/browser/ui/cocoa/location_bar/keyword_hint_decoration.h
diff --git a/chrome/browser/ui/cocoa/location_bar/keyword_hint_decoration.h b/chrome/browser/ui/cocoa/location_bar/keyword_hint_decoration.h
index 648dc0744bb64fc8eda0a303f4a640e0babaa406..4d0d23af139861e6df3d212ea61e611ffee0b6d8 100644
--- a/chrome/browser/ui/cocoa/location_bar/keyword_hint_decoration.h
+++ b/chrome/browser/ui/cocoa/location_bar/keyword_hint_decoration.h
@@ -17,15 +17,15 @@
class KeywordHintDecoration : public LocationBarDecoration {
public:
KeywordHintDecoration();
- virtual ~KeywordHintDecoration();
+ ~KeywordHintDecoration() override;
// Calculates the message to display and where to place the [tab]
// image.
void SetKeyword(const base::string16& keyword, bool is_extension_keyword);
// Implement |LocationBarDecoration|.
- virtual void DrawInFrame(NSRect frame, NSView* control_view) override;
- virtual CGFloat GetWidthForSpace(CGFloat width) override;
+ void DrawInFrame(NSRect frame, NSView* control_view) override;
+ CGFloat GetWidthForSpace(CGFloat width) override;
private:
// Fetch and cache the [tab] image.

Powered by Google App Engine
This is Rietveld 408576698