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

Side by Side Diff: chrome/browser/ui/views/location_bar/keyword_hint_view.h

Issue 628773002: replace OVERRIDE and FINAL with override and final in chrome/browser/ui/[t-v]* (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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_KEYWORD_HINT_VIEW_H_ 5 #ifndef CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_KEYWORD_HINT_VIEW_H_
6 #define CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_KEYWORD_HINT_VIEW_H_ 6 #define CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_KEYWORD_HINT_VIEW_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
(...skipping 23 matching lines...) Expand all
34 public: 34 public:
35 KeywordHintView(Profile* profile, 35 KeywordHintView(Profile* profile,
36 const gfx::FontList& font_list, 36 const gfx::FontList& font_list,
37 SkColor text_color, 37 SkColor text_color,
38 SkColor background_color); 38 SkColor background_color);
39 virtual ~KeywordHintView(); 39 virtual ~KeywordHintView();
40 40
41 void SetKeyword(const base::string16& keyword); 41 void SetKeyword(const base::string16& keyword);
42 base::string16 keyword() const { return keyword_; } 42 base::string16 keyword() const { return keyword_; }
43 43
44 virtual gfx::Size GetPreferredSize() const OVERRIDE; 44 virtual gfx::Size GetPreferredSize() const override;
45 // The minimum size is just big enough to show the tab. 45 // The minimum size is just big enough to show the tab.
46 virtual gfx::Size GetMinimumSize() const OVERRIDE; 46 virtual gfx::Size GetMinimumSize() const override;
47 virtual void Layout() OVERRIDE; 47 virtual void Layout() override;
48 48
49 private: 49 private:
50 views::Label* CreateLabel(const gfx::FontList& font_list, 50 views::Label* CreateLabel(const gfx::FontList& font_list,
51 SkColor text_color, 51 SkColor text_color,
52 SkColor background_color); 52 SkColor background_color);
53 53
54 Profile* profile_; 54 Profile* profile_;
55 views::Label* leading_label_; 55 views::Label* leading_label_;
56 views::ImageView* tab_image_; 56 views::ImageView* tab_image_;
57 views::Label* trailing_label_; 57 views::Label* trailing_label_;
58 base::string16 keyword_; 58 base::string16 keyword_;
59 59
60 DISALLOW_COPY_AND_ASSIGN(KeywordHintView); 60 DISALLOW_COPY_AND_ASSIGN(KeywordHintView);
61 }; 61 };
62 62
63 #endif // CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_KEYWORD_HINT_VIEW_H_ 63 #endif // CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_KEYWORD_HINT_VIEW_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698