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_; |