| 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 | 7 |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/macros.h" | 9 #include "base/macros.h" |
| 10 #include "components/content_settings/core/common/content_settings.h" | 10 #include "components/content_settings/core/common/content_settings.h" |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 views::Label* blocked_label_; | 101 views::Label* blocked_label_; |
| 102 | 102 |
| 103 views::TreeView* allowed_cookies_tree_; | 103 views::TreeView* allowed_cookies_tree_; |
| 104 views::TreeView* blocked_cookies_tree_; | 104 views::TreeView* blocked_cookies_tree_; |
| 105 | 105 |
| 106 views::LabelButton* block_allowed_button_; | 106 views::LabelButton* block_allowed_button_; |
| 107 views::LabelButton* delete_allowed_button_; | 107 views::LabelButton* delete_allowed_button_; |
| 108 views::LabelButton* allow_blocked_button_; | 108 views::LabelButton* allow_blocked_button_; |
| 109 views::LabelButton* for_session_blocked_button_; | 109 views::LabelButton* for_session_blocked_button_; |
| 110 | 110 |
| 111 scoped_ptr<CookiesTreeModel> allowed_cookies_tree_model_; | 111 std::unique_ptr<CookiesTreeModel> allowed_cookies_tree_model_; |
| 112 scoped_ptr<CookiesTreeModel> blocked_cookies_tree_model_; | 112 std::unique_ptr<CookiesTreeModel> blocked_cookies_tree_model_; |
| 113 | 113 |
| 114 CookieInfoView* cookie_info_view_; | 114 CookieInfoView* cookie_info_view_; |
| 115 | 115 |
| 116 InfobarView* infobar_; | 116 InfobarView* infobar_; |
| 117 | 117 |
| 118 bool status_changed_; | 118 bool status_changed_; |
| 119 | 119 |
| 120 DISALLOW_COPY_AND_ASSIGN(CollectedCookiesViews); | 120 DISALLOW_COPY_AND_ASSIGN(CollectedCookiesViews); |
| 121 }; | 121 }; |
| 122 | 122 |
| 123 #endif // CHROME_BROWSER_UI_VIEWS_COLLECTED_COOKIES_VIEWS_H_ | 123 #endif // CHROME_BROWSER_UI_VIEWS_COLLECTED_COOKIES_VIEWS_H_ |
| OLD | NEW |