| 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_GTK_GTK_CHROME_COOKIE_VIEW_H_ | 5 #ifndef CHROME_BROWSER_GTK_GTK_CHROME_COOKIE_VIEW_H_ |
| 6 #define CHROME_BROWSER_GTK_GTK_CHROME_COOKIE_VIEW_H_ | 6 #define CHROME_BROWSER_GTK_GTK_CHROME_COOKIE_VIEW_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <gtk/gtk.h> | 9 #include <gtk/gtk.h> |
| 10 | 10 |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 | 89 |
| 90 // The appcache details widgets. | 90 // The appcache details widgets. |
| 91 GtkWidget* appcache_details_table_; | 91 GtkWidget* appcache_details_table_; |
| 92 GtkWidget* appcache_manifest_entry_; | 92 GtkWidget* appcache_manifest_entry_; |
| 93 GtkWidget* appcache_size_entry_; | 93 GtkWidget* appcache_size_entry_; |
| 94 GtkWidget* appcache_created_entry_; | 94 GtkWidget* appcache_created_entry_; |
| 95 GtkWidget* appcache_last_accessed_entry_; | 95 GtkWidget* appcache_last_accessed_entry_; |
| 96 | 96 |
| 97 // The IndexedDB details widgets. | 97 // The IndexedDB details widgets. |
| 98 GtkWidget* indexed_db_details_table_; | 98 GtkWidget* indexed_db_details_table_; |
| 99 GtkWidget* indexed_db_name_entry_; | |
| 100 GtkWidget* indexed_db_origin_entry_; | 99 GtkWidget* indexed_db_origin_entry_; |
| 101 GtkWidget* indexed_db_size_entry_; | 100 GtkWidget* indexed_db_size_entry_; |
| 102 GtkWidget* indexed_db_last_modified_entry_; | 101 GtkWidget* indexed_db_last_modified_entry_; |
| 103 | 102 |
| 104 // The local storage item widgets. | 103 // The local storage item widgets. |
| 105 GtkWidget* local_storage_item_table_; | 104 GtkWidget* local_storage_item_table_; |
| 106 GtkWidget* local_storage_item_origin_entry_; | 105 GtkWidget* local_storage_item_origin_entry_; |
| 107 GtkWidget* local_storage_item_key_entry_; | 106 GtkWidget* local_storage_item_key_entry_; |
| 108 GtkWidget* local_storage_item_value_entry_; | 107 GtkWidget* local_storage_item_value_entry_; |
| 109 | 108 |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 186 | 185 |
| 187 void gtk_chrome_cookie_view_display_appcache_created( | 186 void gtk_chrome_cookie_view_display_appcache_created( |
| 188 GtkChromeCookieView* self, | 187 GtkChromeCookieView* self, |
| 189 const GURL& manifest_url); | 188 const GURL& manifest_url); |
| 190 | 189 |
| 191 // If |editable_expiration| was true at construction time, returns the value of | 190 // If |editable_expiration| was true at construction time, returns the value of |
| 192 // the combo box. Otherwise, returns false. | 191 // the combo box. Otherwise, returns false. |
| 193 bool gtk_chrome_cookie_view_session_expires(GtkChromeCookieView* self); | 192 bool gtk_chrome_cookie_view_session_expires(GtkChromeCookieView* self); |
| 194 | 193 |
| 195 #endif // CHROME_BROWSER_GTK_GTK_CHROME_COOKIE_VIEW_H_ | 194 #endif // CHROME_BROWSER_GTK_GTK_CHROME_COOKIE_VIEW_H_ |
| OLD | NEW |