| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_COLLECTED_COOKIES_VIEWS_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_COLLECTED_COOKIES_VIEWS_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_COLLECTED_COOKIES_VIEWS_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_COLLECTED_COOKIES_VIEWS_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
| 10 #include "chrome/common/content_settings.h" | 10 #include "chrome/common/content_settings.h" |
| 11 #include "content/public/browser/notification_observer.h" | 11 #include "content/public/browser/notification_observer.h" |
| 12 #include "content/public/browser/notification_registrar.h" | 12 #include "content/public/browser/notification_registrar.h" |
| 13 #include "ui/views/controls/tabbed_pane/tabbed_pane_listener.h" | 13 #include "ui/views/controls/tabbed_pane/tabbed_pane_listener.h" |
| 14 #include "ui/views/controls/tree/tree_view_controller.h" | 14 #include "ui/views/controls/tree/tree_view_controller.h" |
| 15 #include "ui/views/window/dialog_delegate.h" | 15 #include "ui/views/window/dialog_delegate.h" |
| 16 | 16 |
| 17 class ConstrainedWindow; | 17 class ConstrainedWindow; |
| 18 class CookieInfoView; | 18 class CookieInfoView; |
| 19 class CookiesTreeModel; | 19 class CookiesTreeModel; |
| 20 class InfobarView; | 20 class InfobarView; |
| 21 class TabContentsWrapper; | 21 class TabContents; |
| 22 typedef TabContents TabContentsWrapper; |
| 22 | 23 |
| 23 namespace views { | 24 namespace views { |
| 24 class Label; | 25 class Label; |
| 25 class TextButton; | 26 class TextButton; |
| 26 class TreeView; | 27 class TreeView; |
| 27 } | 28 } |
| 28 | 29 |
| 29 // This is the Views implementation of the collected cookies dialog. | 30 // This is the Views implementation of the collected cookies dialog. |
| 30 // | 31 // |
| 31 // CollectedCookiesViews is a dialog that displays the allowed and blocked | 32 // CollectedCookiesViews is a dialog that displays the allowed and blocked |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 CookieInfoView* cookie_info_view_; | 109 CookieInfoView* cookie_info_view_; |
| 109 | 110 |
| 110 InfobarView* infobar_; | 111 InfobarView* infobar_; |
| 111 | 112 |
| 112 bool status_changed_; | 113 bool status_changed_; |
| 113 | 114 |
| 114 DISALLOW_COPY_AND_ASSIGN(CollectedCookiesViews); | 115 DISALLOW_COPY_AND_ASSIGN(CollectedCookiesViews); |
| 115 }; | 116 }; |
| 116 | 117 |
| 117 #endif // CHROME_BROWSER_UI_VIEWS_COLLECTED_COOKIES_VIEWS_H_ | 118 #endif // CHROME_BROWSER_UI_VIEWS_COLLECTED_COOKIES_VIEWS_H_ |
| OLD | NEW |