| 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_UI_VIEWS_OPTIONS_LANGUAGES_PAGE_VIEW_H__ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_OPTIONS_LANGUAGES_PAGE_VIEW_H__ |
| 6 #define CHROME_BROWSER_UI_VIEWS_OPTIONS_LANGUAGES_PAGE_VIEW_H__ | 6 #define CHROME_BROWSER_UI_VIEWS_OPTIONS_LANGUAGES_PAGE_VIEW_H__ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "chrome/browser/prefs/pref_member.h" | 9 #include "chrome/browser/prefs/pref_member.h" |
| 10 #include "chrome/browser/views/options/options_page_view.h" | 10 #include "chrome/browser/ui/views/options/options_page_view.h" |
| 11 #include "views/controls/combobox/combobox.h" | 11 #include "views/controls/combobox/combobox.h" |
| 12 #include "views/controls/button/button.h" | 12 #include "views/controls/button/button.h" |
| 13 #include "views/controls/table/table_view_observer.h" | 13 #include "views/controls/table/table_view_observer.h" |
| 14 #include "views/view.h" | 14 #include "views/view.h" |
| 15 | 15 |
| 16 namespace views { | 16 namespace views { |
| 17 class Checkbox; | 17 class Checkbox; |
| 18 class Label; | 18 class Label; |
| 19 class NativeButton; | 19 class NativeButton; |
| 20 class TableView; | 20 class TableView; |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 | 110 |
| 111 bool language_table_edited_; | 111 bool language_table_edited_; |
| 112 bool language_warning_shown_; | 112 bool language_warning_shown_; |
| 113 bool enable_spellcheck_checkbox_clicked_; | 113 bool enable_spellcheck_checkbox_clicked_; |
| 114 bool enable_autospellcorrect_checkbox_clicked_; | 114 bool enable_autospellcorrect_checkbox_clicked_; |
| 115 | 115 |
| 116 DISALLOW_COPY_AND_ASSIGN(LanguagesPageView); | 116 DISALLOW_COPY_AND_ASSIGN(LanguagesPageView); |
| 117 }; | 117 }; |
| 118 | 118 |
| 119 #endif // CHROME_BROWSER_UI_VIEWS_OPTIONS_LANGUAGES_PAGE_VIEW_H__ | 119 #endif // CHROME_BROWSER_UI_VIEWS_OPTIONS_LANGUAGES_PAGE_VIEW_H__ |
| OLD | NEW |