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

Unified Diff: chrome/browser/ui/views/bookmarks/bookmark_bar_view.cc

Issue 447893003: Test that simulates touch exploration and checks speech on tabs and also the empty bookmark bar. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nits Created 6 years, 4 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/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;

Powered by Google App Engine
This is Rietveld 408576698