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 Gtk implementation of the collected Cookies dialog. | 5 // This is the Gtk implementation of the collected Cookies dialog. |
6 | 6 |
7 #ifndef CHROME_BROWSER_GTK_COLLECTED_COOKIES_GTK_H_ | 7 #ifndef CHROME_BROWSER_GTK_COLLECTED_COOKIES_GTK_H_ |
8 #define CHROME_BROWSER_GTK_COLLECTED_COOKIES_GTK_H_ | 8 #define CHROME_BROWSER_GTK_COLLECTED_COOKIES_GTK_H_ |
9 #pragma once | 9 #pragma once |
10 | 10 |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 GtkWidget* allow_blocked_cookie_button_; | 82 GtkWidget* allow_blocked_cookie_button_; |
83 GtkWidget* for_session_blocked_cookie_button_; | 83 GtkWidget* for_session_blocked_cookie_button_; |
84 | 84 |
85 // The table listing the cookies. | 85 // The table listing the cookies. |
86 GtkWidget* allowed_tree_; | 86 GtkWidget* allowed_tree_; |
87 GtkWidget* blocked_tree_; | 87 GtkWidget* blocked_tree_; |
88 | 88 |
89 GtkTreeSelection* allowed_selection_; | 89 GtkTreeSelection* allowed_selection_; |
90 GtkTreeSelection* blocked_selection_; | 90 GtkTreeSelection* blocked_selection_; |
91 | 91 |
| 92 // The infobar widget. |
| 93 GtkWidget* infobar_; |
| 94 GtkWidget* infobar_label_; |
| 95 |
92 // The tab contents. | 96 // The tab contents. |
93 TabContents* tab_contents_; | 97 TabContents* tab_contents_; |
94 | 98 |
95 // The Cookies Table model. | 99 // The Cookies Table model. |
96 scoped_ptr<CookiesTreeModel> allowed_cookies_tree_model_; | 100 scoped_ptr<CookiesTreeModel> allowed_cookies_tree_model_; |
97 scoped_ptr<CookiesTreeModel> blocked_cookies_tree_model_; | 101 scoped_ptr<CookiesTreeModel> blocked_cookies_tree_model_; |
98 scoped_ptr<gtk_tree::TreeAdapter> allowed_cookies_tree_adapter_; | 102 scoped_ptr<gtk_tree::TreeAdapter> allowed_cookies_tree_adapter_; |
99 scoped_ptr<gtk_tree::TreeAdapter> blocked_cookies_tree_adapter_; | 103 scoped_ptr<gtk_tree::TreeAdapter> blocked_cookies_tree_adapter_; |
100 | 104 |
101 DISALLOW_COPY_AND_ASSIGN(CollectedCookiesGtk); | 105 DISALLOW_COPY_AND_ASSIGN(CollectedCookiesGtk); |
102 }; | 106 }; |
103 | 107 |
104 #endif // CHROME_BROWSER_GTK_COLLECTED_COOKIES_GTK_H_ | 108 #endif // CHROME_BROWSER_GTK_COLLECTED_COOKIES_GTK_H_ |
OLD | NEW |