OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_CHROMEOS_DOM_UI_LANGUAGE_CUSTOMIZE_MODIFIER_KEYS_HANDLER_
H_ // NOLINT | 5 #ifndef CHROME_BROWSER_CHROMEOS_DOM_UI_LANGUAGE_CUSTOMIZE_MODIFIER_KEYS_HANDLER_
H_ // NOLINT |
6 #define CHROME_BROWSER_CHROMEOS_DOM_UI_LANGUAGE_CUSTOMIZE_MODIFIER_KEYS_HANDLER_
H_ // NOLINT | 6 #define CHROME_BROWSER_CHROMEOS_DOM_UI_LANGUAGE_CUSTOMIZE_MODIFIER_KEYS_HANDLER_
H_ // NOLINT |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "chrome/browser/dom_ui/options_ui.h" | 9 #include "chrome/browser/dom_ui/options_ui.h" |
10 #include "chrome/browser/pref_member.h" | 10 #include "chrome/browser/prefs/pref_member.h" |
11 | 11 |
12 namespace chromeos { | 12 namespace chromeos { |
13 | 13 |
14 // Customize modifier keys overlay page UI handler. | 14 // Customize modifier keys overlay page UI handler. |
15 class LanguageCustomizeModifierKeysHandler : public OptionsPageUIHandler { | 15 class LanguageCustomizeModifierKeysHandler : public OptionsPageUIHandler { |
16 public: | 16 public: |
17 LanguageCustomizeModifierKeysHandler(); | 17 LanguageCustomizeModifierKeysHandler(); |
18 virtual ~LanguageCustomizeModifierKeysHandler(); | 18 virtual ~LanguageCustomizeModifierKeysHandler(); |
19 | 19 |
20 // OptionsUIHandler implementation. | 20 // OptionsUIHandler implementation. |
21 virtual void GetLocalizedValues(DictionaryValue* localized_strings); | 21 virtual void GetLocalizedValues(DictionaryValue* localized_strings); |
22 | 22 |
23 private: | 23 private: |
24 DISALLOW_COPY_AND_ASSIGN(LanguageCustomizeModifierKeysHandler); | 24 DISALLOW_COPY_AND_ASSIGN(LanguageCustomizeModifierKeysHandler); |
25 }; | 25 }; |
26 | 26 |
27 } // namespace chromeos | 27 } // namespace chromeos |
28 | 28 |
29 #endif // CHROME_BROWSER_CHROMEOS_DOM_UI_LANGUAGE_CUSTOMIZE_MODIFIER_KEYS_HANDL
ER_H_ // NOLINT | 29 #endif // CHROME_BROWSER_CHROMEOS_DOM_UI_LANGUAGE_CUSTOMIZE_MODIFIER_KEYS_HANDL
ER_H_ // NOLINT |
OLD | NEW |