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