Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 5 // Constants for the names of various preferences, for easier changing. | |
|
sadrul
2017/03/14 01:15:41
Move this comment down in line ~13?
Can you also
Peng
2017/03/14 16:06:52
Done.
| |
| 6 | |
| 7 #ifndef UI_CHROMEOS_EVENTS_PREF_NAMES_H_ | |
| 8 #define UI_CHROMEOS_EVENTS_PREF_NAMES_H_ | |
| 9 | |
| 10 #include "ui/chromeos/ui_chromeos_export.h" | |
| 11 | |
| 12 namespace prefs { | |
| 13 | |
| 14 UI_CHROMEOS_EXPORT extern const char kLanguageRemapCapsLockKeyTo[]; | |
| 15 UI_CHROMEOS_EXPORT extern const char kLanguageRemapSearchKeyTo[]; | |
| 16 UI_CHROMEOS_EXPORT extern const char kLanguageRemapControlKeyTo[]; | |
| 17 UI_CHROMEOS_EXPORT extern const char kLanguageRemapAltKeyTo[]; | |
| 18 UI_CHROMEOS_EXPORT extern const char kLanguageRemapEscapeKeyTo[]; | |
| 19 UI_CHROMEOS_EXPORT extern const char kLanguageRemapBackspaceKeyTo[]; | |
| 20 UI_CHROMEOS_EXPORT extern const char kLanguageRemapDiamondKeyTo[]; | |
| 21 | |
| 22 } // namespace prefs | |
| 23 | |
| 24 #endif // UI_CHROMEOS_EVENTS_PREF_NAMES_H_ | |
| OLD | NEW |