| 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 // This is the Views implementation of the collected Cookies dialog. | 5 // This is the Views implementation of the collected Cookies dialog. |
| 6 | 6 |
| 7 #ifndef CHROME_BROWSER_VIEWS_COLLECTED_COOKIES_WIN_H_ | 7 #ifndef CHROME_BROWSER_VIEWS_COLLECTED_COOKIES_WIN_H_ |
| 8 #define CHROME_BROWSER_VIEWS_COLLECTED_COOKIES_WIN_H_ | 8 #define CHROME_BROWSER_VIEWS_COLLECTED_COOKIES_WIN_H_ |
| 9 #pragma once | 9 #pragma once |
| 10 | 10 |
| 11 #include "chrome/browser/tab_contents/constrained_window.h" | 11 #include "chrome/browser/tab_contents/constrained_window.h" |
| 12 #include "chrome/common/content_settings.h" | 12 #include "chrome/common/content_settings.h" |
| 13 #include "chrome/common/notification_observer.h" |
| 13 #include "chrome/common/notification_registrar.h" | 14 #include "chrome/common/notification_registrar.h" |
| 14 #include "views/controls/tree/tree_view.h" | 15 #include "views/controls/tree/tree_view.h" |
| 15 #include "views/window/dialog_delegate.h" | 16 #include "views/window/dialog_delegate.h" |
| 16 | 17 |
| 17 class ConstrainedWindow; | 18 class ConstrainedWindow; |
| 18 class CookiesTreeModel; | 19 class CookiesTreeModel; |
| 19 class TabContents; | 20 class TabContents; |
| 20 namespace views { | 21 namespace views { |
| 21 class Label; | 22 class Label; |
| 22 class NativeButton; | 23 class NativeButton; |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 views::NativeButton* allow_blocked_button_; | 87 views::NativeButton* allow_blocked_button_; |
| 87 views::NativeButton* for_session_blocked_button_; | 88 views::NativeButton* for_session_blocked_button_; |
| 88 | 89 |
| 89 scoped_ptr<CookiesTreeModel> allowed_cookies_tree_model_; | 90 scoped_ptr<CookiesTreeModel> allowed_cookies_tree_model_; |
| 90 scoped_ptr<CookiesTreeModel> blocked_cookies_tree_model_; | 91 scoped_ptr<CookiesTreeModel> blocked_cookies_tree_model_; |
| 91 | 92 |
| 92 DISALLOW_COPY_AND_ASSIGN(CollectedCookiesWin); | 93 DISALLOW_COPY_AND_ASSIGN(CollectedCookiesWin); |
| 93 }; | 94 }; |
| 94 | 95 |
| 95 #endif // CHROME_BROWSER_VIEWS_COLLECTED_COOKIES_WIN_H_ | 96 #endif // CHROME_BROWSER_VIEWS_COLLECTED_COOKIES_WIN_H_ |
| OLD | NEW |