Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3065)

Unified Diff: chrome/browser/gtk/options/cookies_view.h

Issue 650110: Teach the cookie tree view / model about appcaches. Not hooked up to real dat... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/gtk/options/cookie_filter_page_gtk.cc ('k') | chrome/browser/gtk/options/cookies_view.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/gtk/options/cookies_view.h
===================================================================
--- chrome/browser/gtk/options/cookies_view.h (revision 40156)
+++ chrome/browser/gtk/options/cookies_view.h (working copy)
@@ -12,6 +12,7 @@
#include "base/basictypes.h"
#include "base/scoped_ptr.h"
#include "base/task.h"
+#include "chrome/browser/browsing_data_appcache_helper.h"
#include "chrome/browser/browsing_data_database_helper.h"
#include "chrome/browser/browsing_data_local_storage_helper.h"
#include "chrome/common/gtk_tree.h"
@@ -37,7 +38,8 @@
GtkWindow* parent,
Profile* profile,
BrowsingDataDatabaseHelper* browsing_data_database_helper,
- BrowsingDataLocalStorageHelper* browsing_data_local_storage_helper);
+ BrowsingDataLocalStorageHelper* browsing_data_local_storage_helper,
+ BrowsingDataAppCacheHelper* browsing_data_appcache_helper);
// gtk_tree::TreeAdapter::Delegate implementation.
virtual void OnAnyModelUpdateStart();
@@ -48,7 +50,8 @@
GtkWindow* parent,
Profile* profile,
BrowsingDataDatabaseHelper* browsing_data_database_helper,
- BrowsingDataLocalStorageHelper* browsing_data_local_storage_helper);
+ BrowsingDataLocalStorageHelper* browsing_data_local_storage_helper,
+ BrowsingDataAppCacheHelper* browsing_data_appcache_helper);
// Initialize the dialog contents and layout.
void Init(GtkWindow* parent);
@@ -75,6 +78,9 @@
// Set sensitivity of local storage details.
void SetLocalStorageDetailsSensitivity(gboolean enabled);
+ // Set sensitivity of appcache details.
+ void SetAppCacheDetailsSensitivity(gboolean enabled);
+
// Show the details of the currently selected cookie.
void PopulateCookieDetails(const std::string& domain,
const net::CookieMonster::CanonicalCookie& cookie);
@@ -88,6 +94,10 @@
const BrowsingDataLocalStorageHelper::LocalStorageInfo&
local_storage_info);
+ // Show the details of the currently selected appcache.
+ void PopulateAppCacheDetails(
+ const BrowsingDataAppCacheHelper::AppCacheInfo& info);
+
// Reset the cookie details display.
void ClearCookieDetails();
@@ -151,6 +161,7 @@
// The database details widgets.
GtkWidget* database_details_table_;
+ GtkWidget* database_name_entry_;
GtkWidget* database_description_entry_;
GtkWidget* database_size_entry_;
GtkWidget* database_last_modified_entry_;
@@ -161,15 +172,19 @@
GtkWidget* local_storage_size_entry_;
GtkWidget* local_storage_last_modified_entry_;
- // The profile.
+ // The appcache details widgets.
+ GtkWidget* appcache_details_table_;
+ GtkWidget* appcache_manifest_entry_;
+ GtkWidget* appcache_size_entry_;
+ GtkWidget* appcache_created_entry_;
+ GtkWidget* appcache_last_accessed_entry_;
+
+ // The profile and related helpers.
Profile* profile_;
-
- // Database Helper.
scoped_refptr<BrowsingDataDatabaseHelper> browsing_data_database_helper_;
-
- // Local Storage Helper.
scoped_refptr<BrowsingDataLocalStorageHelper>
browsing_data_local_storage_helper_;
+ scoped_refptr<BrowsingDataAppCacheHelper> browsing_data_appcache_helper_;
// A factory to construct Runnable Methods so that we can be called back to
// re-evaluate the model after the search query string changes.
« no previous file with comments | « chrome/browser/gtk/options/cookie_filter_page_gtk.cc ('k') | chrome/browser/gtk/options/cookies_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698