Index: ui/views/bubble/bubble_frame_view.cc |
diff --git a/ui/views/bubble/bubble_frame_view.cc b/ui/views/bubble/bubble_frame_view.cc |
index 378f82656cb7abf611461b96f230fc2913e412dd..7d4336b6b85db885598e5b998db820eda41b21a0 100644 |
--- a/ui/views/bubble/bubble_frame_view.cc |
+++ b/ui/views/bubble/bubble_frame_view.cc |
@@ -47,6 +47,10 @@ int GetOffScreenLength(const gfx::Rect& monitor_bounds, |
namespace views { |
+// static |
+const char BubbleFrameView::kViewClassName[] = |
+ "ui/views/bubble/BubbleFrameView"; |
+ |
BubbleFrameView::BubbleFrameView(const gfx::Insets& content_margins) |
: bubble_border_(NULL), |
content_margins_(content_margins), |
@@ -144,7 +148,7 @@ void BubbleFrameView::Layout() { |
} |
std::string BubbleFrameView::GetClassName() const { |
- return "ui/views/BubbleFrameView"; |
+ return kViewClassName; |
tfarina
2013/04/18 22:15:17
could you keep "ui/views/bubble/BubbleFrameView" h
simonhong_
2013/04/18 22:20:58
Done.
|
} |
void BubbleFrameView::ButtonPressed(Button* sender, const ui::Event& event) { |