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

Unified Diff: chrome/browser/ui/views/location_bar/icon_label_bubble_view.cc

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: 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/views/location_bar/icon_label_bubble_view.cc
diff --git a/chrome/browser/ui/views/location_bar/icon_label_bubble_view.cc b/chrome/browser/ui/views/location_bar/icon_label_bubble_view.cc
index 490b6be004ef005c482a6d99c6053a3e21b6a10c..95fa0f0cb860bba3d48bed5f9ec54658327f8edb 100644
--- a/chrome/browser/ui/views/location_bar/icon_label_bubble_view.cc
+++ b/chrome/browser/ui/views/location_bar/icon_label_bubble_view.cc
@@ -116,6 +116,10 @@ int IconLabelBubbleView::GetBubbleOuterPadding(bool by_icon) {
(by_icon ? 0 : LocationBarView::kIconInternalPadding);
}
+const char* IconLabelBubbleView::GetClassName() const {
+ return "IconLabelBubbleView";
+}
+
void IconLabelBubbleView::OnPaint(gfx::Canvas* canvas) {
views::Painter* painter = (in_hover_ && hover_background_painter_) ?
hover_background_painter_.get() : background_painter_.get();

Powered by Google App Engine
This is Rietveld 408576698