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

Unified Diff: components/omnibox/browser/omnibox_edit_model.cc

Issue 2891653003: [omnibox] Break out SetCaretPos() method and enhance browser test (Closed)
Patch Set: Responses Created 3 years, 7 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: components/omnibox/browser/omnibox_edit_model.cc
diff --git a/components/omnibox/browser/omnibox_edit_model.cc b/components/omnibox/browser/omnibox_edit_model.cc
index e9fd507c1c66e3999e1de6bffcfd1fd5b7fe8ed6..482d7a8cc0547edce14612464cdcb48378755512 100644
--- a/components/omnibox/browser/omnibox_edit_model.cc
+++ b/components/omnibox/browser/omnibox_edit_model.cc
@@ -372,9 +372,9 @@ void OmniboxEditModel::Revert() {
has_temporary_text_ = false;
size_t start, end;
view_->GetSelectionBounds(&start, &end);
- view_->SetWindowTextAndCaretPos(permanent_text_, 0, false, false);
- view_->SetWindowTextAndCaretPos(
- permanent_text_, std::min(permanent_text_.length(), start), false, true);
+ // First home cursor, so view of text is scrolled to left, then correct it.
Peter Kasting 2017/05/25 23:19:19 Nit: This helps, but I'd probably expand the comme
Kevin Bailey 2017/05/26 13:58:05 Done.
+ view_->SetWindowTextAndCaretPos(permanent_text_, 0, false, true);
+ view_->SetCaretPos(std::min(permanent_text_.length(), start));
client_->OnRevert();
}
« no previous file with comments | « chrome/browser/ui/views/omnibox/omnibox_view_views.cc ('k') | components/omnibox/browser/omnibox_edit_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698