Upload upstream chromium 114.0.5735.31
[platform/framework/web/chromium-efl.git] / components / search_engines / search_engines_pref_names.cc
1 // Copyright 2014 The Chromium Authors
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "components/search_engines/search_engines_pref_names.h"
6
7 namespace prefs {
8
9 // The GUID of the synced default search provider. Note that this acts like a
10 // pointer to which synced search engine should be the default, rather than the
11 // prefs below which describe the locally saved default search provider details
12 // (and are not synced). This is ignored in the case of the default search
13 // provider being managed by policy.
14 const char kSyncedDefaultSearchProviderGUID[] =
15     "default_search_provider.synced_guid";
16
17 // Whether a search context menu item is allowed.
18 const char kDefaultSearchProviderContextMenuAccessAllowed[] =
19     "default_search_provider.context_menu_access_allowed";
20
21 // Whether having a default search provider is enabled.
22 const char kDefaultSearchProviderEnabled[] =
23     "default_search_provider.enabled";
24
25 // The dictionary key used when the default search providers are given
26 // in the preferences file. Normally they are copied from the main
27 // preferences file.
28 const char kSearchProviderOverrides[] = "search_provider_overrides";
29 // The format version for the dictionary above.
30 const char kSearchProviderOverridesVersion[] =
31     "search_provider_overrides_version";
32
33 }  // namespace prefs