Index: chrome/browser/ui/views/bookmarks/bookmark_bar_view.cc |
diff --git a/chrome/browser/ui/views/bookmarks/bookmark_bar_view.cc b/chrome/browser/ui/views/bookmarks/bookmark_bar_view.cc |
index 7292a6e0a9ff2791a6806ee134786a8a389f40bb..a44d2edb13aaa4ccc9c64ee0cd15a7f7819f8f02 100644 |
--- a/chrome/browser/ui/views/bookmarks/bookmark_bar_view.cc |
+++ b/chrome/browser/ui/views/bookmarks/bookmark_bar_view.cc |
@@ -626,6 +626,12 @@ views::MenuItemView* BookmarkBarView::GetDropMenu() { |
return bookmark_drop_menu_ ? bookmark_drop_menu_->menu() : NULL; |
} |
+views::View* BookmarkBarView::GetBookmarkBarInstructionsView() { |
+ if (instructions_ && instructions_->visible()) |
sky
2014/08/08 23:30:03
Is there a reason for the NULL check? instructions
evy
2014/08/09 02:26:52
Is there a chance that code could be added in the
sky
2014/08/11 16:26:58
If we start allowing it to be NULL we would have t
evy
2014/08/11 17:19:07
Done.
|
+ return instructions_; |
+ return NULL; |
+} |
+ |
void BookmarkBarView::StopThrobbing(bool immediate) { |
if (!throbbing_view_) |
return; |