chromium/components/search_engines/choice_made_location.h

// Copyright 2024 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_CHOICE_MADE_LOCATION_H_
#define COMPONENTS_SEARCH_ENGINES_CHOICE_MADE_LOCATION_H_

namespace search_engines {

// The location from which the default search engine was set.
//
// Maintained by [email protected], please reach out if looking into
// adding some new entry here, as there are some requirements that non-`kOther`
// entries must meet.
//
// A Java counterpart will be generated for this enum.
// GENERATED_JAVA_ENUM_PACKAGE: org.chromium.components.search_engines
// LINT.IfChange
enum class ChoiceMadeLocation {};
// LINT.ThenChange(chrome/browser/resources/settings/search_engines_page/search_engines_browser_proxy.ts)

}  // namespace search_engines

#endif  // COMPONENTS_SEARCH_ENGINES_CHOICE_MADE_LOCATION_H_