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

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

Issue 2092663002: Add a counter to calculate the total size of site data. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address review comments. Created 4 years, 6 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
Index: chrome/browser/browsing_data/mock_browsing_data_file_system_helper.h
diff --git a/chrome/browser/browsing_data/mock_browsing_data_file_system_helper.h b/chrome/browser/browsing_data/mock_browsing_data_file_system_helper.h
index e002ca99539fb4857f20170c89f44922d7b6793d..dd09f785bd9c1718beebecd41cc9eec4625f2278 100644
--- a/chrome/browser/browsing_data/mock_browsing_data_file_system_helper.h
+++ b/chrome/browser/browsing_data/mock_browsing_data_file_system_helper.h
@@ -28,7 +28,10 @@ class MockBrowsingDataFileSystemHelper : public BrowsingDataFileSystemHelper {
void AddFileSystem(const GURL& origin,
bool has_persistent,
bool has_temporary,
- bool has_syncable);
+ bool has_syncable,
+ int64_t size_persistent,
+ int64_t size_temporary,
+ int64_t size_syncable);
// Adds some FilesystemInfo samples.
void AddFileSystemSamples();

Powered by Google App Engine
This is Rietveld 408576698