Index: chrome/browser/browsing_data/site_data_size_collector.h |
diff --git a/chrome/browser/browsing_data/site_data_size_collector.h b/chrome/browser/browsing_data/site_data_size_collector.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..a8814fc637f80c7bd9379f58dcade0371a56b1ea |
--- /dev/null |
+++ b/chrome/browser/browsing_data/site_data_size_collector.h |
@@ -0,0 +1,110 @@ |
+// Copyright 2016 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef CHROME_BROWSER_BROWSING_DATA_SITE_DATA_SIZE_COLLECTOR_H_ |
+#define CHROME_BROWSER_BROWSING_DATA_SITE_DATA_SIZE_COLLECTOR_H_ |
+ |
+#include "base/memory/weak_ptr.h" |
+#include "chrome/browser/browsing_data/browsing_data_appcache_helper.h" |
+#include "chrome/browser/browsing_data/browsing_data_cache_storage_helper.h" |
+#include "chrome/browser/browsing_data/browsing_data_channel_id_helper.h" |
+#include "chrome/browser/browsing_data/browsing_data_cookie_helper.h" |
+#include "chrome/browser/browsing_data/browsing_data_counter.h" |
+#include "chrome/browser/browsing_data/browsing_data_database_helper.h" |
+#include "chrome/browser/browsing_data/browsing_data_file_system_helper.h" |
+#include "chrome/browser/browsing_data/browsing_data_flash_lso_helper.h" |
+#include "chrome/browser/browsing_data/browsing_data_indexed_db_helper.h" |
+#include "chrome/browser/browsing_data/browsing_data_local_storage_helper.h" |
+#include "chrome/browser/browsing_data/browsing_data_quota_helper.h" |
+#include "chrome/browser/browsing_data/browsing_data_service_worker_helper.h" |
+#include "chrome/browser/profiles/profile.h" |
+#include "content/public/browser/storage_partition.h" |
+ |
+namespace { |
+ |
+typedef std::list<net::CanonicalCookie> CookieList; |
+typedef std::list<BrowsingDataDatabaseHelper::DatabaseInfo> DatabaseInfoList; |
+typedef std::list<BrowsingDataLocalStorageHelper::LocalStorageInfo> |
+ LocalStorageInfoList; |
+typedef std::list<content::IndexedDBInfo> |
+ IndexedDBInfoList; |
+typedef std::list<BrowsingDataFileSystemHelper::FileSystemInfo> |
+ FileSystemInfoList; |
+typedef std::list<BrowsingDataQuotaHelper::QuotaInfo> QuotaInfoList; |
+typedef net::ChannelIDStore::ChannelIDList ChannelIDList; |
+typedef std::list<content::ServiceWorkerUsageInfo> ServiceWorkerUsageInfoList; |
+typedef std::list<content::CacheStorageUsageInfo> CacheStorageUsageInfoList; |
+typedef std::map<GURL, std::list<content::AppCacheInfo> > AppCacheInfoMap; |
+typedef std::vector<std::string> FlashLSODomainList; |
+ |
+} // namespace |
+ |
+class SiteDataSizeCollector { |
+ public: |
+ explicit SiteDataSizeCollector(Profile* profile); |
+ virtual ~SiteDataSizeCollector(); |
+ |
+ using FetchCallback = base::Callback<void(int64_t)>; |
+ |
+ // Requests to fetch the total storage space used by site data. |
+ void Fetch(const FetchCallback& callback); |
+ |
+ private: |
+ // Callback methods to be invoked when fetching the data is complete. |
+ void OnAppCacheModelInfoLoaded( |
+ scoped_refptr<content::AppCacheInfoCollection>); |
+ void OnCookiesModelInfoLoaded(const net::CookieList& cookie_list); |
+ void OnDatabaseModelInfoLoaded(const DatabaseInfoList& database_info); |
+ void OnLocalStorageModelInfoLoaded( |
+ const LocalStorageInfoList& local_storage_info); |
+ void OnIndexedDBModelInfoLoaded( |
+ const IndexedDBInfoList& indexed_db_info); |
+ void OnFileSystemModelInfoLoaded( |
+ const FileSystemInfoList& file_system_info); |
+ void OnQuotaModelInfoLoaded(const QuotaInfoList& quota_info); |
+ void OnChannelIDModelInfoLoaded(const ChannelIDList& channel_id_list); |
+ void OnServiceWorkerModelInfoLoaded( |
+ const ServiceWorkerUsageInfoList& service_worker_info); |
+ void OnCacheStorageModelInfoLoaded( |
+ const CacheStorageUsageInfoList& cache_storage_info); |
+ void OnFlashLSOInfoLoaded(const FlashLSODomainList& domains); |
+ |
+ // Pointers to the helper objects, needed to retreive all the types of locally |
+ // stored data. |
+ scoped_refptr<BrowsingDataAppCacheHelper> appcache_helper_; |
+ scoped_refptr<BrowsingDataCookieHelper> cookie_helper_; |
+ scoped_refptr<BrowsingDataDatabaseHelper> database_helper_; |
+ scoped_refptr<BrowsingDataLocalStorageHelper> local_storage_helper_; |
+ scoped_refptr<BrowsingDataIndexedDBHelper> indexed_db_helper_; |
+ scoped_refptr<BrowsingDataFileSystemHelper> file_system_helper_; |
+ scoped_refptr<BrowsingDataQuotaHelper> quota_helper_; |
+ scoped_refptr<BrowsingDataChannelIDHelper> channel_id_helper_; |
+ scoped_refptr<BrowsingDataServiceWorkerHelper> service_worker_helper_; |
+ scoped_refptr<BrowsingDataCacheStorageHelper> cache_storage_helper_; |
+ scoped_refptr<BrowsingDataFlashLSOHelper> flash_lso_helper_; |
+ |
+ // Callback for when the size is fetched from each storage backend. |
+ void OnStorageSizeFetched(int64_t size); |
+ |
+ // Callback called when sizes of all site data are fetched and accumulated. |
+ FetchCallback fetch_callback_; |
+ |
+ // Profile whose browsing data should be counted. |
+ Profile* profile_; |
+ |
+ // Default storage partition of the browser context. |
msramek
2016/06/23 21:30:35
nit: "...of this profile." (it's not called browse
fukino
2016/06/30 09:21:24
I removed storage_partition_.
Only storage_partiti
|
+ content::StoragePartition* storage_partition_; |
+ |
+ // Keeps track of how many fetch operations are ongoing. |
+ int in_flight_operations_; |
+ |
+ // Keeps track of the sum of all fetched size. |
+ int64_t total_bytes_; |
+ |
+ base::WeakPtrFactory<SiteDataSizeCollector> weak_ptr_factory_; |
+ |
+ DISALLOW_COPY_AND_ASSIGN(SiteDataSizeCollector); |
+}; |
+ |
+#endif // CHROME_BROWSER_BROWSING_DATA_SITE_DATA_SIZE_COLLECTOR_H_ |