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

Unified Diff: chrome/android/java/src/org/chromium/chrome/browser/omnibox/OmniboxSuggestion.java

Issue 327003003: [AiS] Add a new AutocompleteMatchType for Answers in Suggest. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 6 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/android/java/src/org/chromium/chrome/browser/omnibox/OmniboxSuggestion.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/omnibox/OmniboxSuggestion.java b/chrome/android/java/src/org/chromium/chrome/browser/omnibox/OmniboxSuggestion.java
index 5c5b9af4bc7836a861729ec001a6a3a4d3c20acb..28153739c9e37cdd9019315c614ba94482922a2a 100644
--- a/chrome/android/java/src/org/chromium/chrome/browser/omnibox/OmniboxSuggestion.java
+++ b/chrome/android/java/src/org/chromium/chrome/browser/omnibox/OmniboxSuggestion.java
@@ -52,9 +52,10 @@ public class OmniboxSuggestion {
SEARCH_SUGGEST_PERSONALIZED (11), // A personalized suggested search.
SEARCH_SUGGEST_PROFILE (12), // A personalized suggested search for a
// Google+ profile.
- SEARCH_OTHER_ENGINE (13), // A search with a non-default engine.
- OPEN_HISTORY_PAGE (17); // A synthetic result that opens the history page
- // to search for the input.
+ SEARCH_OTHER_ENGINE (13), // A search with a non-default engine.
+ OPEN_HISTORY_PAGE (17), // A synthetic result that opens the history page
+ // to search for the input.
+ SEARCH_SUGGEST_ANSWER (18); // A short result for a suggested search.
private final int mNativeType;

Powered by Google App Engine
This is Rietveld 408576698