| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 | 12 |
| 13 #include "app/table_model.h" | 13 #include "app/table_model.h" |
| 14 #include "base/compiler_specific.h" | 14 #include "base/compiler_specific.h" |
| 15 #include "chrome/browser/chromeos/options/language_config_model.h" | 15 #include "chrome/browser/chromeos/options/language_config_model.h" |
| 16 #include "chrome/browser/views/options/options_page_view.h" | 16 #include "chrome/browser/ui/views/options/options_page_view.h" |
| 17 #include "views/controls/button/native_button.h" | 17 #include "views/controls/button/native_button.h" |
| 18 #include "views/controls/combobox/combobox.h" | 18 #include "views/controls/combobox/combobox.h" |
| 19 #include "views/controls/label.h" | 19 #include "views/controls/label.h" |
| 20 #include "views/controls/table/table_view2.h" | 20 #include "views/controls/table/table_view2.h" |
| 21 #include "views/controls/table/table_view_observer.h" | 21 #include "views/controls/table/table_view_observer.h" |
| 22 #include "views/grid_layout.h" | 22 #include "views/grid_layout.h" |
| 23 #include "views/window/dialog_delegate.h" | 23 #include "views/window/dialog_delegate.h" |
| 24 | 24 |
| 25 namespace chromeos { | 25 namespace chromeos { |
| 26 | 26 |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 views::TableView2* preferred_language_table_; | 141 views::TableView2* preferred_language_table_; |
| 142 scoped_ptr<AddLanguageComboboxModel> add_language_combobox_model_; | 142 scoped_ptr<AddLanguageComboboxModel> add_language_combobox_model_; |
| 143 views::Combobox* add_language_combobox_; | 143 views::Combobox* add_language_combobox_; |
| 144 | 144 |
| 145 DISALLOW_COPY_AND_ASSIGN(LanguageConfigView); | 145 DISALLOW_COPY_AND_ASSIGN(LanguageConfigView); |
| 146 }; | 146 }; |
| 147 | 147 |
| 148 } // namespace chromeos | 148 } // namespace chromeos |
| 149 | 149 |
| 150 #endif // CHROME_BROWSER_CHROMEOS_OPTIONS_LANGUAGE_CONFIG_VIEW_H_ | 150 #endif // CHROME_BROWSER_CHROMEOS_OPTIONS_LANGUAGE_CONFIG_VIEW_H_ |
| OLD | NEW |