| Index: chrome/android/shell/java/src/org/chromium/chrome/shell/omnibox/SuggestionPopup.java
|
| diff --git a/chrome/android/shell/java/src/org/chromium/chrome/shell/omnibox/SuggestionPopup.java b/chrome/android/shell/java/src/org/chromium/chrome/shell/omnibox/SuggestionPopup.java
|
| index ba28bfe1eecca735a83b3326d172865c15b5c9a6..a87ebcb7120b390f1e9575d902bf58f2653ae9ae 100644
|
| --- a/chrome/android/shell/java/src/org/chromium/chrome/shell/omnibox/SuggestionPopup.java
|
| +++ b/chrome/android/shell/java/src/org/chromium/chrome/shell/omnibox/SuggestionPopup.java
|
| @@ -121,8 +121,7 @@ public class SuggestionPopup implements OnSuggestionsReceivedListener, TextWatch
|
| @Override
|
| public void onSuggestionsReceived(List<OmniboxSuggestion> suggestions,
|
| String inlineAutocompleteText) {
|
| - if (!mUrlField.isFocused() || suggestions.isEmpty())
|
| - return;
|
| + if (!mUrlField.isFocused() || suggestions.isEmpty()) return;
|
| mSuggestionsPopupItemsCount = suggestions.size();
|
| if (mSuggestionsPopup == null) {
|
| mSuggestionsPopup = new ListPopupWindow(
|
|
|