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 #ifndef CHROME_BROWSER_COOKIE_MODAL_DIALOG_H_ | 5 #ifndef CHROME_BROWSER_COOKIE_MODAL_DIALOG_H_ |
6 #define CHROME_BROWSER_COOKIE_MODAL_DIALOG_H_ | 6 #define CHROME_BROWSER_COOKIE_MODAL_DIALOG_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/ref_counted.h" | 10 #include "base/ref_counted.h" |
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
126 const GURL appcache_manifest_url_; | 126 const GURL appcache_manifest_url_; |
127 | 127 |
128 // The caller should provide a delegate in order to receive results | 128 // The caller should provide a delegate in order to receive results |
129 // from this delegate. Any time after calling one of these methods, the | 129 // from this delegate. Any time after calling one of these methods, the |
130 // delegate could be deleted | 130 // delegate could be deleted |
131 CookiePromptModalDialogDelegate* delegate_; | 131 CookiePromptModalDialogDelegate* delegate_; |
132 | 132 |
133 #if defined(OS_LINUX) | 133 #if defined(OS_LINUX) |
134 // The "remember this choice" radio button in the dialog. | 134 // The "remember this choice" radio button in the dialog. |
135 GtkWidget* remember_radio_; | 135 GtkWidget* remember_radio_; |
| 136 |
| 137 // The cookie view; we keep this to querry the result combobox. |
| 138 GtkWidget* cookie_view_; |
136 #endif | 139 #endif |
137 | 140 |
138 DISALLOW_COPY_AND_ASSIGN(CookiePromptModalDialog); | 141 DISALLOW_COPY_AND_ASSIGN(CookiePromptModalDialog); |
139 }; | 142 }; |
140 | 143 |
141 #endif // CHROME_BROWSER_COOKIE_MODAL_DIALOG_H_ | 144 #endif // CHROME_BROWSER_COOKIE_MODAL_DIALOG_H_ |
OLD | NEW |