Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(995)

Side by Side Diff: chrome/browser/ui/views/collected_cookies_views.h

Issue 126123003: [Views] Hook up the "Remove" button in the collected cookies dialog. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/ui/views/collected_cookies_views.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 "chrome/common/content_settings.h" 9 #include "chrome/common/content_settings.h"
10 #include "content/public/browser/notification_observer.h" 10 #include "content/public/browser/notification_observer.h"
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 content::WebContents* web_contents_; 101 content::WebContents* web_contents_;
102 102
103 // Assorted views. 103 // Assorted views.
104 views::Label* allowed_label_; 104 views::Label* allowed_label_;
105 views::Label* blocked_label_; 105 views::Label* blocked_label_;
106 106
107 views::TreeView* allowed_cookies_tree_; 107 views::TreeView* allowed_cookies_tree_;
108 views::TreeView* blocked_cookies_tree_; 108 views::TreeView* blocked_cookies_tree_;
109 109
110 views::LabelButton* block_allowed_button_; 110 views::LabelButton* block_allowed_button_;
111 views::LabelButton* delete_allowed_button_;
111 views::LabelButton* allow_blocked_button_; 112 views::LabelButton* allow_blocked_button_;
112 views::LabelButton* for_session_blocked_button_; 113 views::LabelButton* for_session_blocked_button_;
113 114
114 scoped_ptr<CookiesTreeModel> allowed_cookies_tree_model_; 115 scoped_ptr<CookiesTreeModel> allowed_cookies_tree_model_;
115 scoped_ptr<CookiesTreeModel> blocked_cookies_tree_model_; 116 scoped_ptr<CookiesTreeModel> blocked_cookies_tree_model_;
116 117
117 CookieInfoView* cookie_info_view_; 118 CookieInfoView* cookie_info_view_;
118 119
119 InfobarView* infobar_; 120 InfobarView* infobar_;
120 121
121 bool status_changed_; 122 bool status_changed_;
122 123
123 DISALLOW_COPY_AND_ASSIGN(CollectedCookiesViews); 124 DISALLOW_COPY_AND_ASSIGN(CollectedCookiesViews);
124 }; 125 };
125 126
126 #endif // CHROME_BROWSER_UI_VIEWS_COLLECTED_COOKIES_VIEWS_H_ 127 #endif // CHROME_BROWSER_UI_VIEWS_COLLECTED_COOKIES_VIEWS_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/ui/views/collected_cookies_views.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698