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

Unified Diff: chrome/browser/browsing_data_file_system_helper.h

Issue 10092013: Display third party cookies and site data counts in the WebsiteSettings UI. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: " Created 8 years, 7 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_file_system_helper.h
diff --git a/chrome/browser/browsing_data_file_system_helper.h b/chrome/browser/browsing_data_file_system_helper.h
index 70ca66746e969a4081a126cdc4d6564a484cee42..f1256b97ed2d162a5e22f483d9300c61df07a524 100644
--- a/chrome/browser/browsing_data_file_system_helper.h
+++ b/chrome/browser/browsing_data_file_system_helper.h
@@ -133,6 +133,11 @@ class CannedBrowsingDataFileSystemHelper
// Returns the number of currently stored filesystems.
size_t GetFileSystemCount() const;
+ // Returns the current list of filesystems.
+ const std::list<FileSystemInfo>& GetFileSystemInfo() {
+ return file_system_info_;
+ }
+
// BrowsingDataFileSystemHelper implementation.
virtual void StartFetching(const base::Callback<
void(const std::list<FileSystemInfo>&)>& callback) OVERRIDE;
@@ -152,7 +157,7 @@ class CannedBrowsingDataFileSystemHelper
// must be called on the UI thread.
void NotifyOnUIThread();
- // Holds the current list of file systems returned to the client after
+ // Holds the current list of filesystems returned to the client after
// StartFetching is called.
std::list<FileSystemInfo> file_system_info_;

Powered by Google App Engine
This is Rietveld 408576698