OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_CROS_LANGUAGE_OPTIONS_HANDLER2
_H_ | 5 #ifndef CHROME_BROWSER_UI_WEBUI_OPTIONS2_CHROMEOS_CROS_LANGUAGE_OPTIONS_HANDLER_
H_ |
6 #define CHROME_BROWSER_UI_WEBUI_OPTIONS2_CHROMEOS_CROS_LANGUAGE_OPTIONS_HANDLER2
_H_ | 6 #define CHROME_BROWSER_UI_WEBUI_OPTIONS2_CHROMEOS_CROS_LANGUAGE_OPTIONS_HANDLER_
H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
10 #include "chrome/browser/chromeos/input_method/input_method_descriptor.h" | 10 #include "chrome/browser/chromeos/input_method/input_method_descriptor.h" |
11 #include "chrome/browser/ui/webui/options2/language_options_handler2.h" | 11 #include "chrome/browser/ui/webui/options2/language_options_handler.h" |
12 | 12 |
13 namespace chromeos { | 13 namespace chromeos { |
14 namespace options2 { | 14 namespace options2 { |
15 | 15 |
16 // Language options page UI handler for Chrome OS. For non-Chrome OS, | 16 // Language options page UI handler for Chrome OS. For non-Chrome OS, |
17 // see LanguageOptionsHnadler. | 17 // see LanguageOptionsHnadler. |
18 class CrosLanguageOptionsHandler | 18 class CrosLanguageOptionsHandler |
19 : public ::options2::LanguageOptionsHandlerCommon { | 19 : public ::options2::LanguageOptionsHandlerCommon { |
20 public: | 20 public: |
21 CrosLanguageOptionsHandler(); | 21 CrosLanguageOptionsHandler(); |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 // Called when the input method options page is opened. | 66 // Called when the input method options page is opened. |
67 // |args| will contain the input method ID as string (ex. "mozc"). | 67 // |args| will contain the input method ID as string (ex. "mozc"). |
68 void InputMethodOptionsOpenCallback(const base::ListValue* args); | 68 void InputMethodOptionsOpenCallback(const base::ListValue* args); |
69 | 69 |
70 DISALLOW_COPY_AND_ASSIGN(CrosLanguageOptionsHandler); | 70 DISALLOW_COPY_AND_ASSIGN(CrosLanguageOptionsHandler); |
71 }; | 71 }; |
72 | 72 |
73 } // namespace options2 | 73 } // namespace options2 |
74 } // namespace chromeos | 74 } // namespace chromeos |
75 | 75 |
76 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS2_CHROMEOS_CROS_LANGUAGE_OPTIONS_HANDL
ER2_H_ | 76 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS2_CHROMEOS_CROS_LANGUAGE_OPTIONS_HANDL
ER_H_ |
OLD | NEW |