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

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: moved new tests to views 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())
James Cook 2014/08/08 17:46:55 Any particular reason you're checking for visible(
evy 2014/08/08 18:37:47 Once the instructions appear, the view always exis
+ return instructions_;
+ return NULL;
+}
+
void BookmarkBarView::StopThrobbing(bool immediate) {
if (!throbbing_view_)
return;

Powered by Google App Engine
This is Rietveld 408576698