search_engines_pref_names.cc 1.4 KB

123456789101112131415161718192021222324252627282930313233
  1. // Copyright 2014 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.
  4. #include "components/search_engines/search_engines_pref_names.h"
  5. namespace prefs {
  6. // The GUID of the synced default search provider. Note that this acts like a
  7. // pointer to which synced search engine should be the default, rather than the
  8. // prefs below which describe the locally saved default search provider details
  9. // (and are not synced). This is ignored in the case of the default search
  10. // provider being managed by policy.
  11. const char kSyncedDefaultSearchProviderGUID[] =
  12. "default_search_provider.synced_guid";
  13. // Whether a search context menu item is allowed.
  14. const char kDefaultSearchProviderContextMenuAccessAllowed[] =
  15. "default_search_provider.context_menu_access_allowed";
  16. // Whether having a default search provider is enabled.
  17. const char kDefaultSearchProviderEnabled[] =
  18. "default_search_provider.enabled";
  19. // The dictionary key used when the default search providers are given
  20. // in the preferences file. Normally they are copied from the main
  21. // preferences file.
  22. const char kSearchProviderOverrides[] = "search_provider_overrides";
  23. // The format version for the dictionary above.
  24. const char kSearchProviderOverridesVersion[] =
  25. "search_provider_overrides_version";
  26. } // namespace prefs