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

Unified Diff: chrome/browser/browsing_data/browsing_data_file_system_helper.h

Issue 13357004: Clear browsing data clears data for type kStorageTypeTemporary but not for kStorageTypeSyncable. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase again Created 7 years, 8 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 | « no previous file | chrome/browser/browsing_data/browsing_data_file_system_helper.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/browsing_data/browsing_data_file_system_helper.h
diff --git a/chrome/browser/browsing_data/browsing_data_file_system_helper.h b/chrome/browser/browsing_data/browsing_data_file_system_helper.h
index 633661d24df092f0d01e5ebb4b665ec0a36fa513..a8c6878f0cec6bb6f5ede47ec713de2832a7cfa5 100644
--- a/chrome/browser/browsing_data/browsing_data_file_system_helper.h
+++ b/chrome/browser/browsing_data/browsing_data_file_system_helper.h
@@ -50,8 +50,10 @@ class BrowsingDataFileSystemHelper
const GURL& origin,
bool has_persistent,
bool has_temporary,
+ bool has_syncable,
int64 usage_persistent,
- int64 usage_temporary);
+ int64 usage_temporary,
+ int64 usage_syncable);
~FileSystemInfo();
// The origin for which the information is relevant.
@@ -60,10 +62,14 @@ class BrowsingDataFileSystemHelper
bool has_persistent;
// True if the origin has a temporary file system.
bool has_temporary;
+ // True if the origin has a syncable file system.
+ bool has_syncable;
// Persistent file system usage, in bytes.
int64 usage_persistent;
// Temporary file system usage, in bytes.
int64 usage_temporary;
+ // Syncable file system usage, in bytes.
+ int64 usage_syncable;
};
// Creates a BrowsingDataFileSystemHelper instance for the file systems
« no previous file with comments | « no previous file | chrome/browser/browsing_data/browsing_data_file_system_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698