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_PINYIN_CONFIG_VIEW_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_OPTIONS_LANGUAGE_PINYIN_CONFIG_VIEW_H_ |
6 #define CHROME_BROWSER_CHROMEOS_OPTIONS_LANGUAGE_PINYIN_CONFIG_VIEW_H_ | 6 #define CHROME_BROWSER_CHROMEOS_OPTIONS_LANGUAGE_PINYIN_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/window/dialog_delegate.h" | 18 #include "views/window/dialog_delegate.h" |
19 | 19 |
20 namespace chromeos { | 20 namespace chromeos { |
21 | 21 |
22 class LanguageCombobox; | 22 class LanguageCombobox; |
23 template <typename DataType> | 23 template <typename DataType> |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 LanguageComboboxModel<int>* combobox_model; | 79 LanguageComboboxModel<int>* combobox_model; |
80 LanguageCombobox* combobox; | 80 LanguageCombobox* combobox; |
81 } double_pinyin_schema_; | 81 } double_pinyin_schema_; |
82 | 82 |
83 DISALLOW_COPY_AND_ASSIGN(LanguagePinyinConfigView); | 83 DISALLOW_COPY_AND_ASSIGN(LanguagePinyinConfigView); |
84 }; | 84 }; |
85 | 85 |
86 } // namespace chromeos | 86 } // namespace chromeos |
87 | 87 |
88 #endif // CHROME_BROWSER_CHROMEOS_OPTIONS_LANGUAGE_PINYIN_CONFIG_VIEW_H_ | 88 #endif // CHROME_BROWSER_CHROMEOS_OPTIONS_LANGUAGE_PINYIN_CONFIG_VIEW_H_ |
OLD | NEW |