18 lines
665 B
C
18 lines
665 B
C
/* Copyright (c) 2022 The Brave Authors. All rights reserved.
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#ifndef BRAVE_BROWSER_SEARCH_ENGINES_PREF_NAMES_H_
|
|
#define BRAVE_BROWSER_SEARCH_ENGINES_PREF_NAMES_H_
|
|
|
|
// local state
|
|
inline constexpr char kEnableSearchSuggestionsByDefault[] =
|
|
"brave.enable_search_suggestions_by_default";
|
|
|
|
// Profile prefs
|
|
inline constexpr char kMigratedSearchDefaultInJP[] =
|
|
"brave.migrated_search_default_in_jp";
|
|
|
|
#endif // BRAVE_BROWSER_SEARCH_ENGINES_PREF_NAMES_H_
|