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_GENERAL_PAGE_VIEW_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_OPTIONS_GENERAL_PAGE_VIEW_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_OPTIONS_GENERAL_PAGE_VIEW_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_OPTIONS_GENERAL_PAGE_VIEW_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "chrome/browser/prefs/pref_change_registrar.h" | 9 #include "chrome/browser/prefs/pref_change_registrar.h" |
10 #include "chrome/browser/prefs/pref_member.h" | 10 #include "chrome/browser/prefs/pref_member.h" |
11 #include "chrome/browser/shell_integration.h" | 11 #include "chrome/browser/shell_integration.h" |
12 #include "chrome/browser/views/options/options_page_view.h" | 12 #include "chrome/browser/ui/views/options/options_page_view.h" |
13 #include "chrome/browser/views/url_picker.h" | 13 #include "chrome/browser/ui/views/url_picker.h" |
14 #include "views/controls/combobox/combobox.h" | 14 #include "views/controls/combobox/combobox.h" |
15 #include "views/controls/button/button.h" | 15 #include "views/controls/button/button.h" |
16 #include "views/controls/link.h" | 16 #include "views/controls/link.h" |
17 #include "views/controls/table/table_view_observer.h" | 17 #include "views/controls/table/table_view_observer.h" |
18 #include "views/view.h" | 18 #include "views/view.h" |
19 | 19 |
20 namespace views { | 20 namespace views { |
21 class Checkbox; | 21 class Checkbox; |
22 class GroupboxView; | 22 class GroupboxView; |
23 class Label; | 23 class Label; |
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
163 | 163 |
164 // The helper object that performs default browser set/check tasks. | 164 // The helper object that performs default browser set/check tasks. |
165 scoped_refptr<ShellIntegration::DefaultBrowserWorker> default_browser_worker_; | 165 scoped_refptr<ShellIntegration::DefaultBrowserWorker> default_browser_worker_; |
166 | 166 |
167 PrefChangeRegistrar registrar_; | 167 PrefChangeRegistrar registrar_; |
168 | 168 |
169 DISALLOW_COPY_AND_ASSIGN(GeneralPageView); | 169 DISALLOW_COPY_AND_ASSIGN(GeneralPageView); |
170 }; | 170 }; |
171 | 171 |
172 #endif // CHROME_BROWSER_UI_VIEWS_OPTIONS_GENERAL_PAGE_VIEW_H_ | 172 #endif // CHROME_BROWSER_UI_VIEWS_OPTIONS_GENERAL_PAGE_VIEW_H_ |
OLD | NEW |