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

Unified Diff: chrome/browser/ui/views/location_bar/suggested_text_view.cc

Issue 10836031: Remove Instant v1 API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Update history, title, favicon Created 8 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
« no previous file with comments | « chrome/browser/ui/views/location_bar/location_bar_view.cc ('k') | chrome/browser/ui/webui/instant_ui.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/views/location_bar/suggested_text_view.cc
diff --git a/chrome/browser/ui/views/location_bar/suggested_text_view.cc b/chrome/browser/ui/views/location_bar/suggested_text_view.cc
index 37ccc44418e8bb4591a710cd28eee89d538ca66e..e30b08ed62000c11fb03404d593a8dca3bf9a4f6 100644
--- a/chrome/browser/ui/views/location_bar/suggested_text_view.cc
+++ b/chrome/browser/ui/views/location_bar/suggested_text_view.cc
@@ -73,9 +73,9 @@ void SuggestedTextView::AnimationCanceled(const ui::Animation* animation) {
ui::Animation* SuggestedTextView::CreateAnimation() {
ui::MultiAnimation::Parts parts;
parts.push_back(ui::MultiAnimation::Part(
- InstantController::kAutoCommitPauseTimeMS, ui::Tween::ZERO));
+ InstantController::kInlineAutocompletePauseTimeMS, ui::Tween::ZERO));
parts.push_back(ui::MultiAnimation::Part(
- InstantController::kAutoCommitFadeInTimeMS, ui::Tween::EASE_IN));
+ InstantController::kInlineAutocompleteFadeInTimeMS, ui::Tween::EASE_IN));
ui::MultiAnimation* animation = new ui::MultiAnimation(parts);
animation->set_delegate(this);
animation->set_continuous(false);
« no previous file with comments | « chrome/browser/ui/views/location_bar/location_bar_view.cc ('k') | chrome/browser/ui/webui/instant_ui.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698