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_OPTIONS_LANGUAGE_CHEWING_CONFIG_VIEW_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_OPTIONS_LANGUAGE_CHEWING_CONFIG_VIEW_H_ |
6 #define CHROME_BROWSER_CHROMEOS_OPTIONS_LANGUAGE_CHEWING_CONFIG_VIEW_H_ | 6 #define CHROME_BROWSER_CHROMEOS_OPTIONS_LANGUAGE_CHEWING_CONFIG_VIEW_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 | 10 |
11 #include "chrome/browser/chromeos/cros/input_method_library.h" | 11 #include "chrome/browser/chromeos/cros/input_method_library.h" |
12 #include "chrome/browser/chromeos/language_preferences.h" | 12 #include "chrome/browser/chromeos/language_preferences.h" |
13 #include "chrome/browser/pref_member.h" | 13 #include "chrome/browser/prefs/pref_member.h" |
14 #include "chrome/browser/views/options/options_page_view.h" | 14 #include "chrome/browser/views/options/options_page_view.h" |
15 #include "views/controls/button/checkbox.h" | 15 #include "views/controls/button/checkbox.h" |
16 #include "views/controls/combobox/combobox.h" | 16 #include "views/controls/combobox/combobox.h" |
17 #include "views/controls/label.h" | 17 #include "views/controls/label.h" |
18 #include "views/controls/slider/slider.h" | 18 #include "views/controls/slider/slider.h" |
19 #include "views/window/dialog_delegate.h" | 19 #include "views/window/dialog_delegate.h" |
20 | 20 |
21 namespace chromeos { | 21 namespace chromeos { |
22 | 22 |
23 class LanguageCombobox; | 23 class LanguageCombobox; |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 LanguageComboboxModel<int>* combobox_model; | 94 LanguageComboboxModel<int>* combobox_model; |
95 LanguageCombobox* combobox; | 95 LanguageCombobox* combobox; |
96 } hsu_sel_key_type_; | 96 } hsu_sel_key_type_; |
97 | 97 |
98 DISALLOW_COPY_AND_ASSIGN(LanguageChewingConfigView); | 98 DISALLOW_COPY_AND_ASSIGN(LanguageChewingConfigView); |
99 }; | 99 }; |
100 | 100 |
101 } // namespace chromeos | 101 } // namespace chromeos |
102 | 102 |
103 #endif // CHROME_BROWSER_CHROMEOS_OPTIONS_LANGUAGE_CHEWING_CONFIG_VIEW_H_ | 103 #endif // CHROME_BROWSER_CHROMEOS_OPTIONS_LANGUAGE_CHEWING_CONFIG_VIEW_H_ |
OLD | NEW |