| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_OPTIONS_PAGE_VIEW_H__ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_OPTIONS_OPTIONS_PAGE_VIEW_H__ |
| 6 #define CHROME_BROWSER_UI_VIEWS_OPTIONS_OPTIONS_PAGE_VIEW_H__ | 6 #define CHROME_BROWSER_UI_VIEWS_OPTIONS_OPTIONS_PAGE_VIEW_H__ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "chrome/browser/options_page_base.h" | 9 #include "chrome/browser/ui/options/options_page_base.h" |
| 10 #include "views/controls/link.h" | 10 #include "views/controls/link.h" |
| 11 #include "views/controls/button/native_button.h" | 11 #include "views/controls/button/native_button.h" |
| 12 | 12 |
| 13 class PrefService; | 13 class PrefService; |
| 14 | 14 |
| 15 /////////////////////////////////////////////////////////////////////////////// | 15 /////////////////////////////////////////////////////////////////////////////// |
| 16 // OptionsPageView | 16 // OptionsPageView |
| 17 // | 17 // |
| 18 // A base class for Options dialog pages that handles ensuring control | 18 // A base class for Options dialog pages that handles ensuring control |
| 19 // initialization is done just once. | 19 // initialization is done just once. |
| (...skipping 23 matching lines...) Expand all Loading... |
| 43 virtual AccessibilityTypes::Role GetAccessibleRole(); | 43 virtual AccessibilityTypes::Role GetAccessibleRole(); |
| 44 | 44 |
| 45 private: | 45 private: |
| 46 // Whether or not the control layout has been initialized for this page. | 46 // Whether or not the control layout has been initialized for this page. |
| 47 bool initialized_; | 47 bool initialized_; |
| 48 | 48 |
| 49 DISALLOW_COPY_AND_ASSIGN(OptionsPageView); | 49 DISALLOW_COPY_AND_ASSIGN(OptionsPageView); |
| 50 }; | 50 }; |
| 51 | 51 |
| 52 #endif // CHROME_BROWSER_UI_VIEWS_OPTIONS_OPTIONS_PAGE_VIEW_H__ | 52 #endif // CHROME_BROWSER_UI_VIEWS_OPTIONS_OPTIONS_PAGE_VIEW_H__ |
| OLD | NEW |