pref_names.h 921 B

12345678910111213141516171819202122232425
  1. // Copyright 2017 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. #ifndef UI_CHROMEOS_EVENTS_PREF_NAMES_H_
  5. #define UI_CHROMEOS_EVENTS_PREF_NAMES_H_
  6. namespace prefs {
  7. // Constants for the names of various preferences, for easier changing.
  8. // TODO:: Those pref names probably need to live in a better place.
  9. extern const char kLanguageRemapCapsLockKeyTo[];
  10. extern const char kLanguageRemapSearchKeyTo[];
  11. extern const char kLanguageRemapControlKeyTo[];
  12. extern const char kLanguageRemapAltKeyTo[];
  13. extern const char kLanguageRemapEscapeKeyTo[];
  14. extern const char kLanguageRemapBackspaceKeyTo[];
  15. extern const char kLanguageRemapAssistantKeyTo[];
  16. extern const char kLanguageRemapExternalCommandKeyTo[];
  17. extern const char kLanguageRemapExternalMetaKeyTo[];
  18. } // namespace prefs
  19. #endif // UI_CHROMEOS_EVENTS_PREF_NAMES_H_