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 |