// Copyright 2014 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_SEARCH_ENGINES_SEARCH_ENGINE_TYPE_H_ #define COMPONENTS_SEARCH_ENGINES_SEARCH_ENGINE_TYPE_H_ // Enum to record the user's default search engine choice in UMA. // These values are persisted to logs. Entries should not be renumbered and // numeric values should never be reused. // // This should be kept aligned with OmniboxSearchEngineType in enums.xml. // // A Java counterpart will be generated for this enum. // GENERATED_JAVA_ENUM_PACKAGE: org.chromium.chrome.browser.search_engines enum SearchEngineType { … }; // Enum to record the type of search engine a user used in keyword mode. This // should be kept aligned with the `OmniboxBuiltinEngineType` enum in enums.xml. // Entries should not be renumbered and numeric values should never be reused. enum BuiltinEngineType { … }; #endif // COMPONENTS_SEARCH_ENGINES_SEARCH_ENGINE_TYPE_H_