| 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_GTK_GTK_CHROME_COOKIE_VIEW_H_ | 5 #ifndef CHROME_BROWSER_UI_GTK_GTK_CHROME_COOKIE_VIEW_H_ |
| 6 #define CHROME_BROWSER_UI_GTK_GTK_CHROME_COOKIE_VIEW_H_ | 6 #define CHROME_BROWSER_UI_GTK_GTK_CHROME_COOKIE_VIEW_H_ |
| 7 | 7 |
| 8 #include <gtk/gtk.h> | 8 #include <gtk/gtk.h> |
| 9 | 9 |
| 10 #include <string> | 10 #include <string> |
| (...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 local_storage_info); | 162 local_storage_info); |
| 163 | 163 |
| 164 // Switches the display to showing the passed in app cache. | 164 // Switches the display to showing the passed in app cache. |
| 165 void gtk_chrome_cookie_view_display_app_cache( | 165 void gtk_chrome_cookie_view_display_app_cache( |
| 166 GtkChromeCookieView* widget, | 166 GtkChromeCookieView* widget, |
| 167 const appcache::AppCacheInfo& info); | 167 const appcache::AppCacheInfo& info); |
| 168 | 168 |
| 169 // Switches the display to showing the passed in IndexedDB data. | 169 // Switches the display to showing the passed in IndexedDB data. |
| 170 void gtk_chrome_cookie_view_display_indexed_db( | 170 void gtk_chrome_cookie_view_display_indexed_db( |
| 171 GtkChromeCookieView* widget, | 171 GtkChromeCookieView* widget, |
| 172 const BrowsingDataIndexedDBHelper::IndexedDBInfo& info); | 172 const content::IndexedDBInfo& info); |
| 173 | 173 |
| 174 // Switches the display to an individual storage item. | 174 // Switches the display to an individual storage item. |
| 175 void gtk_chrome_cookie_view_display_local_storage_item( | 175 void gtk_chrome_cookie_view_display_local_storage_item( |
| 176 GtkChromeCookieView* widget, | 176 GtkChromeCookieView* widget, |
| 177 const std::string& host, | 177 const std::string& host, |
| 178 const string16& key, | 178 const string16& key, |
| 179 const string16& value); | 179 const string16& value); |
| 180 | 180 |
| 181 void gtk_chrome_cookie_view_display_database_accessed( | 181 void gtk_chrome_cookie_view_display_database_accessed( |
| 182 GtkChromeCookieView* self, | 182 GtkChromeCookieView* self, |
| 183 const std::string& host, | 183 const std::string& host, |
| 184 const string16& database_name, | 184 const string16& database_name, |
| 185 const string16& display_name, | 185 const string16& display_name, |
| 186 unsigned long estimated_size); | 186 unsigned long estimated_size); |
| 187 | 187 |
| 188 void gtk_chrome_cookie_view_display_appcache_created( | 188 void gtk_chrome_cookie_view_display_appcache_created( |
| 189 GtkChromeCookieView* self, | 189 GtkChromeCookieView* self, |
| 190 const GURL& manifest_url); | 190 const GURL& manifest_url); |
| 191 | 191 |
| 192 // If |editable_expiration| was true at construction time, returns the value of | 192 // If |editable_expiration| was true at construction time, returns the value of |
| 193 // the combo box. Otherwise, returns false. | 193 // the combo box. Otherwise, returns false. |
| 194 bool gtk_chrome_cookie_view_session_expires(GtkChromeCookieView* self); | 194 bool gtk_chrome_cookie_view_session_expires(GtkChromeCookieView* self); |
| 195 | 195 |
| 196 #endif // CHROME_BROWSER_UI_GTK_GTK_CHROME_COOKIE_VIEW_H_ | 196 #endif // CHROME_BROWSER_UI_GTK_GTK_CHROME_COOKIE_VIEW_H_ |
| OLD | NEW |