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_OPTIONS_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_OPTIONS_CHROMEOS_CROS_LANGUAGE_OPTIONS_HANDLER_H
_ | 6 #define CHROME_BROWSER_UI_WEBUI_OPTIONS_CHROMEOS_CROS_LANGUAGE_OPTIONS_HANDLER_H
_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
11 #include "base/macros.h" | 11 #include "base/macros.h" |
12 #include "chrome/browser/ui/webui/options/language_options_handler.h" | 12 #include "chrome/browser/ui/webui/options/language_options_handler.h" |
13 #include "ui/base/ime/chromeos/component_extension_ime_manager.h" | 13 #include "chromeos/ime/component_extension_ime_manager.h" |
14 #include "ui/base/ime/chromeos/input_method_descriptor.h" | 14 #include "chromeos/ime/input_method_descriptor.h" |
15 | 15 |
16 namespace chromeos { | 16 namespace chromeos { |
17 namespace options { | 17 namespace options { |
18 | 18 |
19 // Language options page UI handler for Chrome OS. For non-Chrome OS, | 19 // Language options page UI handler for Chrome OS. For non-Chrome OS, |
20 // see LanguageOptionsHnadler. | 20 // see LanguageOptionsHnadler. |
21 class CrosLanguageOptionsHandler | 21 class CrosLanguageOptionsHandler |
22 : public ::options::LanguageOptionsHandlerCommon { | 22 : public ::options::LanguageOptionsHandlerCommon { |
23 public: | 23 public: |
24 CrosLanguageOptionsHandler(); | 24 CrosLanguageOptionsHandler(); |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 // |list| of extension IMEs. | 73 // |list| of extension IMEs. |
74 void AddImeProvider(base::ListValue* list); | 74 void AddImeProvider(base::ListValue* list); |
75 | 75 |
76 DISALLOW_COPY_AND_ASSIGN(CrosLanguageOptionsHandler); | 76 DISALLOW_COPY_AND_ASSIGN(CrosLanguageOptionsHandler); |
77 }; | 77 }; |
78 | 78 |
79 } // namespace options | 79 } // namespace options |
80 } // namespace chromeos | 80 } // namespace chromeos |
81 | 81 |
82 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_CHROMEOS_CROS_LANGUAGE_OPTIONS_HANDLE
R_H_ | 82 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_CHROMEOS_CROS_LANGUAGE_OPTIONS_HANDLE
R_H_ |
OLD | NEW |