Index: chrome/browser/ui/views/bookmarks/bookmark_bubble_view.cc |
diff --git a/chrome/browser/ui/views/bookmarks/bookmark_bubble_view.cc b/chrome/browser/ui/views/bookmarks/bookmark_bubble_view.cc |
index 3f5c4395dc3e4ddcd2ebadad1ad5a1f41153ef11..64a6e0c8a1ad19a38f8162e5ef50192e93e14fac 100644 |
--- a/chrome/browser/ui/views/bookmarks/bookmark_bubble_view.cc |
+++ b/chrome/browser/ui/views/bookmarks/bookmark_bubble_view.cc |
@@ -109,10 +109,6 @@ BookmarkBubbleView::~BookmarkBubbleView() { |
delete parent_combobox_; |
} |
-views::View* BookmarkBubbleView::GetInitiallyFocusedView() { |
- return title_tf_; |
-} |
- |
void BookmarkBubbleView::WindowClosing() { |
// We have to reset |bubble_| here, not in our destructor, because we'll be |
// destroyed asynchronously and the shown state will be checked before then. |
@@ -262,6 +258,14 @@ void BookmarkBubbleView::Init() { |
AddAccelerator(ui::Accelerator(ui::VKEY_R, ui::EF_ALT_DOWN)); |
} |
+const char* BookmarkBubbleView::GetClassName() const { |
+ return "BookmarkBubbleView"; |
+} |
+ |
+views::View* BookmarkBubbleView::GetInitiallyFocusedView() { |
+ return title_tf_; |
+} |
+ |
BookmarkBubbleView::BookmarkBubbleView( |
views::View* anchor_view, |
BookmarkBubbleViewObserver* observer, |