Revert 248827 "android: Migrate old content readback to use asyn..."
[chromium-blink-merge.git] / chrome / common / autocomplete_match_type.cc
blob37f8fe06a2edcef381fb5e34cdce5b6435fa793f
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "chrome/common/autocomplete_match_type.h"
7 #include "base/basictypes.h"
9 // static
10 std::string AutocompleteMatchType::ToString(AutocompleteMatchType::Type type) {
11 const char* strings[] = {
12 "url-what-you-typed",
13 "history-url",
14 "history-title",
15 "history-body",
16 "history-keyword",
17 "navsuggest",
18 "search-what-you-typed",
19 "search-history",
20 "search-suggest",
21 "search-suggest-entity",
22 "search-suggest-infinite",
23 "search-suggest-personalized",
24 "search-suggest-profile",
25 "search-other-engine",
26 "extension-app",
27 "contact",
28 "bookmark-title",
30 COMPILE_ASSERT(arraysize(strings) == AutocompleteMatchType::NUM_TYPES,
31 strings_array_must_match_type_enum);
32 return strings[type];