| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_UI_WEBUI_OPTIONS2_CHROMEOS_LANGUAGE_CHEWING_HANDLER2_H_ | 5 #ifndef CHROME_BROWSER_UI_WEBUI_OPTIONS2_CHROMEOS_LANGUAGE_CHEWING_HANDLER2_H_ |
| 6 #define CHROME_BROWSER_UI_WEBUI_OPTIONS2_CHROMEOS_LANGUAGE_CHEWING_HANDLER2_H_ | 6 #define CHROME_BROWSER_UI_WEBUI_OPTIONS2_CHROMEOS_LANGUAGE_CHEWING_HANDLER2_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "chrome/browser/ui/webui/options2/options_ui2.h" | 11 #include "chrome/browser/ui/webui/options2/options_ui2.h" |
| 12 | 12 |
| 13 namespace base { | 13 namespace base { |
| 14 class DictionaryValue; | 14 class DictionaryValue; |
| 15 } | 15 } |
| 16 | 16 |
| 17 namespace chromeos { | 17 namespace chromeos { |
| 18 namespace options2 { | 18 namespace options2 { |
| 19 | 19 |
| 20 // Chewing options page UI handler. | 20 // Chewing options page UI handler. |
| 21 class LanguageChewingHandler : public ::options2::OptionsPageUIHandler { | 21 class LanguageChewingHandler : public OptionsPageUIHandler { |
| 22 public: | 22 public: |
| 23 LanguageChewingHandler(); | 23 LanguageChewingHandler(); |
| 24 virtual ~LanguageChewingHandler(); | 24 virtual ~LanguageChewingHandler(); |
| 25 | 25 |
| 26 // OptionsPageUIHandler implementation. | 26 // OptionsPageUIHandler implementation. |
| 27 virtual void GetLocalizedValues( | 27 virtual void GetLocalizedValues( |
| 28 base::DictionaryValue* localized_strings) OVERRIDE; | 28 base::DictionaryValue* localized_strings) OVERRIDE; |
| 29 | 29 |
| 30 private: | 30 private: |
| 31 DISALLOW_COPY_AND_ASSIGN(LanguageChewingHandler); | 31 DISALLOW_COPY_AND_ASSIGN(LanguageChewingHandler); |
| 32 }; | 32 }; |
| 33 | 33 |
| 34 } // namespace options2 | 34 } // namespace options2 |
| 35 } // namespace chromeos | 35 } // namespace chromeos |
| 36 | 36 |
| 37 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS2_CHROMEOS_LANGUAGE_CHEWING_HANDLER2_H
_ | 37 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS2_CHROMEOS_LANGUAGE_CHEWING_HANDLER2_H
_ |
| OLD | NEW |