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

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

Issue 869453002: Define class names for views class in c/b/ui/views (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: inline class name strings Created 5 years, 11 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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_ICON_LABEL_BUBBLE_VIEW_H_ 5 #ifndef CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_ICON_LABEL_BUBBLE_VIEW_H_
6 #define CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_ICON_LABEL_BUBBLE_VIEW_H_ 6 #define CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_ICON_LABEL_BUBBLE_VIEW_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/strings/string16.h" 10 #include "base/strings/string16.h"
(...skipping 30 matching lines...) Expand all
41 ~IconLabelBubbleView() override; 41 ~IconLabelBubbleView() override;
42 42
43 void SetLabel(const base::string16& label); 43 void SetLabel(const base::string16& label);
44 void SetImage(const gfx::ImageSkia& image); 44 void SetImage(const gfx::ImageSkia& image);
45 void set_is_extension_icon(bool is_extension_icon) { 45 void set_is_extension_icon(bool is_extension_icon) {
46 is_extension_icon_ = is_extension_icon; 46 is_extension_icon_ = is_extension_icon;
47 } 47 }
48 48
49 protected: 49 protected:
50 // views::View: 50 // views::View:
51 const char* GetClassName() const override;
51 gfx::Size GetPreferredSize() const override; 52 gfx::Size GetPreferredSize() const override;
52 void Layout() override; 53 void Layout() override;
53 void OnMouseEntered(const ui::MouseEvent& event) override; 54 void OnMouseEntered(const ui::MouseEvent& event) override;
54 void OnMouseExited(const ui::MouseEvent& event) override; 55 void OnMouseExited(const ui::MouseEvent& event) override;
55 56
56 const gfx::FontList& font_list() const { return label_->font_list(); } 57 const gfx::FontList& font_list() const { return label_->font_list(); }
57 58
58 gfx::Size GetSizeForLabelWidth(int width) const; 59 gfx::Size GetSizeForLabelWidth(int width) const;
59 60
60 private: 61 private:
(...skipping 17 matching lines...) Expand all
78 views::ImageView* image_; 79 views::ImageView* image_;
79 views::Label* label_; 80 views::Label* label_;
80 81
81 bool is_extension_icon_; 82 bool is_extension_icon_;
82 bool in_hover_; 83 bool in_hover_;
83 84
84 DISALLOW_COPY_AND_ASSIGN(IconLabelBubbleView); 85 DISALLOW_COPY_AND_ASSIGN(IconLabelBubbleView);
85 }; 86 };
86 87
87 #endif // CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_ICON_LABEL_BUBBLE_VIEW_H_ 88 #endif // CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_ICON_LABEL_BUBBLE_VIEW_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698