| 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_CONTENTS_VIEW_H__ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_OPTIONS_ADVANCED_CONTENTS_VIEW_H__ |
| 6 #define CHROME_BROWSER_UI_VIEWS_OPTIONS_ADVANCED_CONTENTS_VIEW_H__ | 6 #define CHROME_BROWSER_UI_VIEWS_OPTIONS_ADVANCED_CONTENTS_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 | 10 |
| 11 class AdvancedContentsView; | 11 class AdvancedContentsView; |
| 12 namespace views { | 12 namespace views { |
| 13 class ScrollView; | 13 class ScrollView; |
| 14 } | 14 } |
| 15 | 15 |
| 16 /////////////////////////////////////////////////////////////////////////////// | 16 /////////////////////////////////////////////////////////////////////////////// |
| 17 // AdvancedScrollViewContainer | 17 // AdvancedScrollViewContainer |
| 18 // | 18 // |
| 19 // A View that contains a scroll view containing the Advanced options. | 19 // A View that contains a scroll view containing the Advanced options. |
| (...skipping 10 matching lines...) Expand all Loading... |
| 30 // The contents of the advanced scroll view. | 30 // The contents of the advanced scroll view. |
| 31 AdvancedContentsView* contents_view_; | 31 AdvancedContentsView* contents_view_; |
| 32 | 32 |
| 33 // The scroll view that contains the advanced options. | 33 // The scroll view that contains the advanced options. |
| 34 views::ScrollView* scroll_view_; | 34 views::ScrollView* scroll_view_; |
| 35 | 35 |
| 36 DISALLOW_COPY_AND_ASSIGN(AdvancedScrollViewContainer); | 36 DISALLOW_COPY_AND_ASSIGN(AdvancedScrollViewContainer); |
| 37 }; | 37 }; |
| 38 | 38 |
| 39 #endif // CHROME_BROWSER_UI_VIEWS_OPTIONS_ADVANCED_CONTENTS_VIEW_H__ | 39 #endif // CHROME_BROWSER_UI_VIEWS_OPTIONS_ADVANCED_CONTENTS_VIEW_H__ |
| OLD | NEW |