| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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_VIEWS_OPTIONS_LANGUAGES_PAGE_VIEW_H__ | 5 #ifndef CHROME_BROWSER_VIEWS_OPTIONS_LANGUAGES_PAGE_VIEW_H__ |
| 6 #define CHROME_BROWSER_VIEWS_OPTIONS_LANGUAGES_PAGE_VIEW_H__ | 6 #define CHROME_BROWSER_VIEWS_OPTIONS_LANGUAGES_PAGE_VIEW_H__ |
| 7 | 7 |
| 8 #include "chrome/browser/views/options/options_page_view.h" | 8 #include "chrome/browser/views/options/options_page_view.h" |
| 9 #include "chrome/common/pref_member.h" | 9 #include "chrome/common/pref_member.h" |
| 10 #include "views/controls/combobox/combobox.h" | 10 #include "views/controls/combobox/combobox.h" |
| 11 #include "views/controls/button/button.h" | 11 #include "views/controls/button/button.h" |
| 12 #include "views/controls/table/table_view_observer.h" | 12 #include "views/controls/table/table_view_observer.h" |
| 13 #include "views/view.h" | 13 #include "views/view.h" |
| 14 | 14 |
| 15 namespace views { | 15 namespace views { |
| 16 class Checkbox; | 16 class Checkbox; |
| 17 class Label; | 17 class Label; |
| 18 class NativeButton; | 18 class NativeButton; |
| 19 class TableModel; | |
| 20 class TableView; | 19 class TableView; |
| 21 } | 20 } |
| 22 | 21 |
| 22 class AddLanguageView; |
| 23 class LanguageComboboxModel; | 23 class LanguageComboboxModel; |
| 24 class LanguageOrderTableModel; | 24 class LanguageOrderTableModel; |
| 25 class AddLanguageView; | 25 class TableModel; |
| 26 | 26 |
| 27 /////////////////////////////////////////////////////////////////////////////// | 27 /////////////////////////////////////////////////////////////////////////////// |
| 28 // LanguagesPageView | 28 // LanguagesPageView |
| 29 | 29 |
| 30 class LanguagesPageView : public OptionsPageView, | 30 class LanguagesPageView : public OptionsPageView, |
| 31 public views::ButtonListener, | 31 public views::ButtonListener, |
| 32 public views::TableViewObserver, | 32 public views::TableViewObserver, |
| 33 public views::Combobox::Listener { | 33 public views::Combobox::Listener { |
| 34 public: | 34 public: |
| 35 explicit LanguagesPageView(Profile* profile); | 35 explicit LanguagesPageView(Profile* profile); |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 | 109 |
| 110 bool language_table_edited_; | 110 bool language_table_edited_; |
| 111 bool language_warning_shown_; | 111 bool language_warning_shown_; |
| 112 bool enable_spellcheck_checkbox_clicked_; | 112 bool enable_spellcheck_checkbox_clicked_; |
| 113 bool enable_autospellcorrect_checkbox_clicked_; | 113 bool enable_autospellcorrect_checkbox_clicked_; |
| 114 | 114 |
| 115 DISALLOW_EVIL_CONSTRUCTORS(LanguagesPageView); | 115 DISALLOW_EVIL_CONSTRUCTORS(LanguagesPageView); |
| 116 }; | 116 }; |
| 117 | 117 |
| 118 #endif // CHROME_BROWSER_VIEWS_OPTIONS_LANGUAGES_PAGE_VIEW_H__ | 118 #endif // CHROME_BROWSER_VIEWS_OPTIONS_LANGUAGES_PAGE_VIEW_H__ |
| OLD | NEW |