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

Unified Diff: chrome/common/autocomplete_match_type.h

Issue 58003005: Modify Entity Suggestion support and Add Profile Suggest support (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix tests Created 7 years 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/metrics/metrics_log.cc ('k') | chrome/common/autocomplete_match_type.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/autocomplete_match_type.h
diff --git a/chrome/common/autocomplete_match_type.h b/chrome/common/autocomplete_match_type.h
index 7255bf6993ae3aedd6d7f0daa6f2ceb573009df8..5842270e29076f0fc81defb65ddd15e082ef4eda 100644
--- a/chrome/common/autocomplete_match_type.h
+++ b/chrome/common/autocomplete_match_type.h
@@ -11,22 +11,31 @@ struct AutocompleteMatchType {
// Type of AutocompleteMatch. Typedef'ed in autocomplete_match.h. Defined here
// to pass the type details back and forth between the browser and renderer.
enum Type {
- URL_WHAT_YOU_TYPED = 0, // The input as a URL.
- HISTORY_URL, // A past page whose URL contains the input.
- HISTORY_TITLE, // A past page whose title contains the input.
- HISTORY_BODY, // A past page whose body contains the input.
- HISTORY_KEYWORD, // A past page whose keyword contains the input.
- NAVSUGGEST, // A suggested URL.
- SEARCH_WHAT_YOU_TYPED, // The input as a search query (with the default
- // engine).
- SEARCH_HISTORY, // A past search (with the default engine)
- // containing the input.
- SEARCH_SUGGEST, // A suggested search (with the default engine).
- SEARCH_OTHER_ENGINE, // A search with a non-default engine.
- EXTENSION_APP, // An Extension App with a title/url that contains
- // the input.
- CONTACT, // One of the user's contacts.
- BOOKMARK_TITLE, // A bookmark whose title contains the input.
+ URL_WHAT_YOU_TYPED = 0, // The input as a URL.
+ HISTORY_URL, // A past page whose URL contains the input.
+ HISTORY_TITLE, // A past page whose title contains the input.
+ HISTORY_BODY, // A past page whose body contains the input.
+ HISTORY_KEYWORD, // A past page whose keyword contains the
+ // input.
+ NAVSUGGEST, // A suggested URL.
+ SEARCH_WHAT_YOU_TYPED, // The input as a search query (with the
+ // default engine).
+ SEARCH_HISTORY, // A past search (with the default engine)
+ // containing the input.
+ SEARCH_SUGGEST, // A suggested search (with the default engine)
+ // query that doesn't fall into one of the more
+ // specific suggestion categories below.
+ SEARCH_SUGGEST_ENTITY, // A suggested search for an entity.
+ SEARCH_SUGGEST_INFINITE, // A suggested search to complete the tail of
+ // the query.
+ SEARCH_SUGGEST_PERSONALIZED, // A personalized suggested search.
+ SEARCH_SUGGEST_PROFILE, // A personalized suggested search for a
+ // Google+ profile.
+ SEARCH_OTHER_ENGINE, // A search with a non-default engine.
+ EXTENSION_APP, // An Extension App with a title/url that
+ // contains the input.
+ CONTACT, // One of the user's contacts.
+ BOOKMARK_TITLE, // A bookmark whose title contains the input.
NUM_TYPES,
};
« no previous file with comments | « chrome/browser/metrics/metrics_log.cc ('k') | chrome/common/autocomplete_match_type.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698