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_ADVANCED_PAGE_VIEW_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_OPTIONS_ADVANCED_PAGE_VIEW_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_OPTIONS_ADVANCED_PAGE_VIEW_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_OPTIONS_ADVANCED_PAGE_VIEW_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "chrome/browser/views/options/options_page_view.h" | 9 #include "chrome/browser/ui/views/options/options_page_view.h" |
10 #include "views/controls/button/button.h" | 10 #include "views/controls/button/button.h" |
11 | 11 |
12 class AdvancedOptionsListModel; | 12 class AdvancedOptionsListModel; |
13 class AdvancedScrollViewContainer; | 13 class AdvancedScrollViewContainer; |
14 class PrefService; | 14 class PrefService; |
15 namespace views { | 15 namespace views { |
16 class NativeButton; | 16 class NativeButton; |
17 } | 17 } |
18 | 18 |
19 /////////////////////////////////////////////////////////////////////////////// | 19 /////////////////////////////////////////////////////////////////////////////// |
(...skipping 17 matching lines...) Expand all Loading... |
37 | 37 |
38 private: | 38 private: |
39 // Controls for the Advanced page | 39 // Controls for the Advanced page |
40 AdvancedScrollViewContainer* advanced_scroll_view_; | 40 AdvancedScrollViewContainer* advanced_scroll_view_; |
41 views::NativeButton* reset_to_default_button_; | 41 views::NativeButton* reset_to_default_button_; |
42 | 42 |
43 DISALLOW_COPY_AND_ASSIGN(AdvancedPageView); | 43 DISALLOW_COPY_AND_ASSIGN(AdvancedPageView); |
44 }; | 44 }; |
45 | 45 |
46 #endif // CHROME_BROWSER_UI_VIEWS_OPTIONS_ADVANCED_PAGE_VIEW_H_ | 46 #endif // CHROME_BROWSER_UI_VIEWS_OPTIONS_ADVANCED_PAGE_VIEW_H_ |
OLD | NEW |