Chromium Code Reviews| Index: ui/chromeos/events/pref_names.h |
| diff --git a/ui/chromeos/events/pref_names.h b/ui/chromeos/events/pref_names.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..2256773c27a15f579e28fb8c76ad289fc3140ea9 |
| --- /dev/null |
| +++ b/ui/chromeos/events/pref_names.h |
| @@ -0,0 +1,24 @@ |
| +// Copyright 2017 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +// 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.
|
| + |
| +#ifndef UI_CHROMEOS_EVENTS_PREF_NAMES_H_ |
| +#define UI_CHROMEOS_EVENTS_PREF_NAMES_H_ |
| + |
| +#include "ui/chromeos/ui_chromeos_export.h" |
| + |
| +namespace prefs { |
| + |
| +UI_CHROMEOS_EXPORT extern const char kLanguageRemapCapsLockKeyTo[]; |
| +UI_CHROMEOS_EXPORT extern const char kLanguageRemapSearchKeyTo[]; |
| +UI_CHROMEOS_EXPORT extern const char kLanguageRemapControlKeyTo[]; |
| +UI_CHROMEOS_EXPORT extern const char kLanguageRemapAltKeyTo[]; |
| +UI_CHROMEOS_EXPORT extern const char kLanguageRemapEscapeKeyTo[]; |
| +UI_CHROMEOS_EXPORT extern const char kLanguageRemapBackspaceKeyTo[]; |
| +UI_CHROMEOS_EXPORT extern const char kLanguageRemapDiamondKeyTo[]; |
| + |
| +} // namespace prefs |
| + |
| +#endif // UI_CHROMEOS_EVENTS_PREF_NAMES_H_ |