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 Cookie Manager dialog. | 5 // This is the Gtk implementation of the Cookie Manager dialog. |
6 | 6 |
7 #ifndef CHROME_BROWSER_GTK_OPTIONS_COOKIES_VIEW_H_ | 7 #ifndef CHROME_BROWSER_GTK_OPTIONS_COOKIES_VIEW_H_ |
8 #define CHROME_BROWSER_GTK_OPTIONS_COOKIES_VIEW_H_ | 8 #define CHROME_BROWSER_GTK_OPTIONS_COOKIES_VIEW_H_ |
9 | 9 |
10 #include <gtk/gtk.h> | 10 #include <gtk/gtk.h> |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 GtkWidget* description_label_; | 96 GtkWidget* description_label_; |
97 GtkWidget* filter_entry_; | 97 GtkWidget* filter_entry_; |
98 GtkWidget* filter_clear_button_; | 98 GtkWidget* filter_clear_button_; |
99 GtkWidget* remove_button_; | 99 GtkWidget* remove_button_; |
100 GtkWidget* remove_all_button_; | 100 GtkWidget* remove_all_button_; |
101 | 101 |
102 // The table listing the cookies. | 102 // The table listing the cookies. |
103 GtkWidget* tree_; | 103 GtkWidget* tree_; |
104 GtkTreeSelection* selection_; | 104 GtkTreeSelection* selection_; |
105 | 105 |
106 GtkChromeCookieView* cookie_display_; | 106 GtkWidget* cookie_display_; |
107 | 107 |
108 // The profile and related helpers. | 108 // The profile and related helpers. |
109 Profile* profile_; | 109 Profile* profile_; |
110 scoped_refptr<BrowsingDataDatabaseHelper> browsing_data_database_helper_; | 110 scoped_refptr<BrowsingDataDatabaseHelper> browsing_data_database_helper_; |
111 scoped_refptr<BrowsingDataLocalStorageHelper> | 111 scoped_refptr<BrowsingDataLocalStorageHelper> |
112 browsing_data_local_storage_helper_; | 112 browsing_data_local_storage_helper_; |
113 scoped_refptr<BrowsingDataAppCacheHelper> browsing_data_appcache_helper_; | 113 scoped_refptr<BrowsingDataAppCacheHelper> browsing_data_appcache_helper_; |
114 | 114 |
115 // A factory to construct Runnable Methods so that we can be called back to | 115 // A factory to construct Runnable Methods so that we can be called back to |
116 // re-evaluate the model after the search query string changes. | 116 // re-evaluate the model after the search query string changes. |
(...skipping 20 matching lines...) Expand all Loading... |
137 FRIEND_TEST(CookiesViewTest, RemoveByDomain); | 137 FRIEND_TEST(CookiesViewTest, RemoveByDomain); |
138 FRIEND_TEST(CookiesViewTest, RemoveDefaultSelection); | 138 FRIEND_TEST(CookiesViewTest, RemoveDefaultSelection); |
139 FRIEND_TEST(CookiesViewTest, Filter); | 139 FRIEND_TEST(CookiesViewTest, Filter); |
140 FRIEND_TEST(CookiesViewTest, FilterRemoveAll); | 140 FRIEND_TEST(CookiesViewTest, FilterRemoveAll); |
141 FRIEND_TEST(CookiesViewTest, FilterRemove); | 141 FRIEND_TEST(CookiesViewTest, FilterRemove); |
142 | 142 |
143 DISALLOW_COPY_AND_ASSIGN(CookiesView); | 143 DISALLOW_COPY_AND_ASSIGN(CookiesView); |
144 }; | 144 }; |
145 | 145 |
146 #endif // CHROME_BROWSER_GTK_OPTIONS_COOKIES_VIEW_H_ | 146 #endif // CHROME_BROWSER_GTK_OPTIONS_COOKIES_VIEW_H_ |
OLD | NEW |