| 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_VIEWS_OPTIONS_CONTENT_SETTINGS_WINDOW_VIEW_H_ | 5 #ifndef CHROME_BROWSER_VIEWS_OPTIONS_CONTENT_SETTINGS_WINDOW_VIEW_H_ |
| 6 #define CHROME_BROWSER_VIEWS_OPTIONS_CONTENT_SETTINGS_WINDOW_VIEW_H_ | 6 #define CHROME_BROWSER_VIEWS_OPTIONS_CONTENT_SETTINGS_WINDOW_VIEW_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "chrome/browser/pref_member.h" | 9 #include "chrome/browser/prefs/pref_member.h" |
| 10 #include "chrome/common/content_settings_types.h" | 10 #include "chrome/common/content_settings_types.h" |
| 11 #include "views/controls/listbox/listbox.h" | 11 #include "views/controls/listbox/listbox.h" |
| 12 #include "views/view.h" | 12 #include "views/view.h" |
| 13 #include "views/window/dialog_delegate.h" | 13 #include "views/window/dialog_delegate.h" |
| 14 | 14 |
| 15 class Profile; | 15 class Profile; |
| 16 class MessageLoop; | 16 class MessageLoop; |
| 17 class OptionsPageView; | 17 class OptionsPageView; |
| 18 | 18 |
| 19 namespace views { | 19 namespace views { |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 // Stores the possible content pages displayed on the right. | 83 // Stores the possible content pages displayed on the right. |
| 84 // |pages_[current_page_]| is the currently displayed page, and it's the only | 84 // |pages_[current_page_]| is the currently displayed page, and it's the only |
| 85 // parented View in |pages_|. | 85 // parented View in |pages_|. |
| 86 std::vector<View*> pages_; | 86 std::vector<View*> pages_; |
| 87 | 87 |
| 88 DISALLOW_COPY_AND_ASSIGN(ContentSettingsWindowView); | 88 DISALLOW_COPY_AND_ASSIGN(ContentSettingsWindowView); |
| 89 }; | 89 }; |
| 90 | 90 |
| 91 #endif // CHROME_BROWSER_VIEWS_OPTIONS_CONTENT_SETTINGS_WINDOW_VIEW_H_ | 91 #endif // CHROME_BROWSER_VIEWS_OPTIONS_CONTENT_SETTINGS_WINDOW_VIEW_H_ |
| 92 | 92 |
| OLD | NEW |