| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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_GENERAL_PAGE_VIEW_H_ | 5 #ifndef CHROME_BROWSER_VIEWS_OPTIONS_GENERAL_PAGE_VIEW_H_ |
| 6 #define CHROME_BROWSER_VIEWS_OPTIONS_GENERAL_PAGE_VIEW_H_ | 6 #define CHROME_BROWSER_VIEWS_OPTIONS_GENERAL_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/browser/views/shelf_item_dialog.h" | 9 #include "chrome/browser/views/shelf_item_dialog.h" |
| 10 #include "chrome/common/pref_member.h" | 10 #include "chrome/common/pref_member.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 GroupboxView; | 18 class GroupboxView; |
| 19 class Label; | 19 class Label; |
| 20 class NativeButton; | 20 class NativeButton; |
| 21 class RadioButton; | 21 class RadioButton; |
| 22 class TableModel; | |
| 23 class TableView; | 22 class TableView; |
| 24 class Textfield; | 23 class Textfield; |
| 25 } | 24 } |
| 26 class CustomHomePagesTableModel; | 25 class CustomHomePagesTableModel; |
| 27 class OptionsGroupView; | 26 class OptionsGroupView; |
| 28 class SearchEngineListModel; | 27 class SearchEngineListModel; |
| 28 class TableModel; |
| 29 | 29 |
| 30 /////////////////////////////////////////////////////////////////////////////// | 30 /////////////////////////////////////////////////////////////////////////////// |
| 31 // GeneralPageView | 31 // GeneralPageView |
| 32 | 32 |
| 33 class GeneralPageView : public OptionsPageView, | 33 class GeneralPageView : public OptionsPageView, |
| 34 public views::Combobox::Listener, | 34 public views::Combobox::Listener, |
| 35 public views::ButtonListener, | 35 public views::ButtonListener, |
| 36 public views::Textfield::Controller, | 36 public views::Textfield::Controller, |
| 37 public ShelfItemDialogDelegate, | 37 public ShelfItemDialogDelegate, |
| 38 public views::TableViewObserver { | 38 public views::TableViewObserver { |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 | 152 |
| 153 // The helper object that performs default browser set/check tasks. | 153 // The helper object that performs default browser set/check tasks. |
| 154 class DefaultBrowserWorker; | 154 class DefaultBrowserWorker; |
| 155 friend DefaultBrowserWorker; | 155 friend DefaultBrowserWorker; |
| 156 scoped_refptr<DefaultBrowserWorker> default_browser_worker_; | 156 scoped_refptr<DefaultBrowserWorker> default_browser_worker_; |
| 157 | 157 |
| 158 DISALLOW_COPY_AND_ASSIGN(GeneralPageView); | 158 DISALLOW_COPY_AND_ASSIGN(GeneralPageView); |
| 159 }; | 159 }; |
| 160 | 160 |
| 161 #endif // CHROME_BROWSER_VIEWS_OPTIONS_GENERAL_PAGE_VIEW_H_ | 161 #endif // CHROME_BROWSER_VIEWS_OPTIONS_GENERAL_PAGE_VIEW_H_ |
| OLD | NEW |