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

Unified Diff: chrome/browser/ui/browser.cc

Issue 12036075: alternate ntp: fix website page jankiness when suggestions show and top bars are hidden (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove redundant param Created 7 years, 11 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/browser.cc
diff --git a/chrome/browser/ui/browser.cc b/chrome/browser/ui/browser.cc
index cbd53a9fd71b99ef914edba61ab33883903c22b4..7ddaf3e26ca76fd759bb6209dff0ac6e549d4170 100644
--- a/chrome/browser/ui/browser.cc
+++ b/chrome/browser/ui/browser.cc
@@ -1244,12 +1244,8 @@ void Browser::MaybeUpdateBookmarkBarStateForInstantPreview(
// |InstantPreviewController| to update bookmark bar state according to
// instant preview state.
// ModeChanged() updates bookmark bar state for all mode transitions except
- // when transitioning from |NTP| to |SEARCH_SUGGESTIONS|, because that needs
- // to be done when the suggestions are ready.
- // If |mode| is |SEARCH_SUGGESTIONS| and bookmark bar is still showing
- // attached, the previous mode is definitely NTP; it won't be |DEFAULT|
- // because ModeChanged() would have handled that transition by hiding the
- // bookmark bar.
+ // when new mode is |SEARCH_SUGGESTIONS|, because that needs to be done when
+ // the suggestions are ready.
if (mode.is_search_suggestions() &&
bookmark_bar_state_ == BookmarkBar::SHOW) {
UpdateBookmarkBarState(BOOKMARK_BAR_STATE_CHANGE_TAB_STATE);
@@ -1913,12 +1909,16 @@ void Browser::Observe(int type,
void Browser::ModeChanged(const chrome::search::Mode& old_mode,
const chrome::search::Mode& new_mode) {
- // If mode is transitioning from |NTP| to |SEARCH_SUGGESTIONS|, don't update
- // bookmark bar state now; wait till the instant preview is ready to show
- // suggestions before starting the animation to hide the bookmark bar (in
- // MaybeUpdateBookmarkBarStateForInstantPreview()).
+ // If new mode is |SEARCH_SUGGESTIONS|, don't update bookmark bar state now;
+ // wait till the instant preview is ready to show suggestions before hiding
+ // the bookmark bar (in MaybeUpdateBookmarkBarStateForInstantPreview()).
+ // TODO(kuan): but for now, only delay updating bookmark bar state if origin
+ // is |DEFAULT|; other origins require more complex logic to be implemented
+ // to prevent jankiness caused by hiding bookmark bar, so just hide the
+ // bookmark bar immediately and tolerate the jankiness for a while.
// For other mode transitions, update bookmark bar state accordingly.
- if (old_mode.is_ntp() && new_mode.is_search_suggestions() &&
+ if (new_mode.is_search_suggestions() &&
+ new_mode.is_origin_default() &&
bookmark_bar_state_ == BookmarkBar::SHOW) {
return;
}

Powered by Google App Engine
This is Rietveld 408576698