| 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_CONFIG_VIEW_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_OPTIONS_LANGUAGE_CONFIG_VIEW_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_OPTIONS_LANGUAGE_CONFIG_VIEW_H_ | 6 #define CHROME_BROWSER_CHROMEOS_OPTIONS_LANGUAGE_CONFIG_VIEW_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <map> | 9 #include <map> |
| 10 #include <set> | 10 #include <set> |
| 11 #include <string> | 11 #include <string> |
| 12 #include <vector> | |
| 13 | 12 |
| 14 #include "app/table_model.h" | 13 #include "app/table_model.h" |
| 15 #include "chrome/browser/chromeos/options/language_config_model.h" | 14 #include "chrome/browser/chromeos/options/language_config_model.h" |
| 16 #include "chrome/browser/views/options/options_page_view.h" | 15 #include "chrome/browser/views/options/options_page_view.h" |
| 17 #include "views/controls/button/native_button.h" | 16 #include "views/controls/button/native_button.h" |
| 18 #include "views/controls/combobox/combobox.h" | 17 #include "views/controls/combobox/combobox.h" |
| 19 #include "views/controls/label.h" | 18 #include "views/controls/label.h" |
| 20 #include "views/controls/table/table_view2.h" | 19 #include "views/controls/table/table_view2.h" |
| 21 #include "views/controls/table/table_view_observer.h" | 20 #include "views/controls/table/table_view_observer.h" |
| 22 #include "views/grid_layout.h" | 21 #include "views/grid_layout.h" |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 views::TableView2* preferred_language_table_; | 140 views::TableView2* preferred_language_table_; |
| 142 scoped_ptr<AddLanguageComboboxModel> add_language_combobox_model_; | 141 scoped_ptr<AddLanguageComboboxModel> add_language_combobox_model_; |
| 143 views::Combobox* add_language_combobox_; | 142 views::Combobox* add_language_combobox_; |
| 144 | 143 |
| 145 DISALLOW_COPY_AND_ASSIGN(LanguageConfigView); | 144 DISALLOW_COPY_AND_ASSIGN(LanguageConfigView); |
| 146 }; | 145 }; |
| 147 | 146 |
| 148 } // namespace chromeos | 147 } // namespace chromeos |
| 149 | 148 |
| 150 #endif // CHROME_BROWSER_CHROMEOS_OPTIONS_LANGUAGE_CONFIG_VIEW_H_ | 149 #endif // CHROME_BROWSER_CHROMEOS_OPTIONS_LANGUAGE_CONFIG_VIEW_H_ |
| OLD | NEW |