Commit 3c57e912 authored by Brandon Wylie's avatar Brandon Wylie Committed by Commit Bot

Assign textWithAutocomplete to the correct value in #forceOnTextChanged

Change-Id: I0c52401587eda127ae9e48515fbd20db8b63d41a
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1841582Reviewed-by: default avatarTed Choc <tedchoc@chromium.org>
Commit-Queue: Brandon Wylie <wylieb@chromium.org>
Cr-Commit-Position: refs/heads/master@{#703105}
parent 07b1e411
...@@ -1116,7 +1116,7 @@ public class LocationBarLayout extends FrameLayout ...@@ -1116,7 +1116,7 @@ public class LocationBarLayout extends FrameLayout
private void forceOnTextChanged() { private void forceOnTextChanged() {
String textWithoutAutocomplete = mUrlCoordinator.getTextWithoutAutocomplete(); String textWithoutAutocomplete = mUrlCoordinator.getTextWithoutAutocomplete();
String textWithAutocomplete = mUrlCoordinator.getTextWithoutAutocomplete(); String textWithAutocomplete = mUrlCoordinator.getTextWithAutocomplete();
mAutocompleteCoordinator.onTextChanged(textWithoutAutocomplete, textWithAutocomplete); mAutocompleteCoordinator.onTextChanged(textWithoutAutocomplete, textWithAutocomplete);
mStatusViewCoordinator.onTextChanged(textWithoutAutocomplete, textWithAutocomplete); mStatusViewCoordinator.onTextChanged(textWithoutAutocomplete, textWithAutocomplete);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment