diff options
Diffstat (limited to 'chrome/browser/browsing_data/browsing_data_file_system_helper.h')
-rw-r--r-- | chrome/browser/browsing_data/browsing_data_file_system_helper.h | 12 |
1 files changed, 1 insertions, 11 deletions
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 9e81157..97e223f 100644 --- a/chrome/browser/browsing_data/browsing_data_file_system_helper.h +++ b/chrome/browser/browsing_data/browsing_data_file_system_helper.h @@ -144,23 +144,13 @@ class CannedBrowsingDataFileSystemHelper CannedBrowsingDataFileSystemHelper(); virtual ~CannedBrowsingDataFileSystemHelper(); - // Holds the current list of filesystems returned to the client. Access to - // |file_system_info_| is triggered indirectly via the UI thread and guarded - // by |is_fetching_|. This means |file_system_info_| is only accessed while - // |is_fetching_| is true. The flag |is_fetching_| is only accessed on the UI - // thread. + // Holds the current list of filesystems returned to the client. std::list<FileSystemInfo> file_system_info_; // The callback passed in at the beginning of the StartFetching workflow so // that it can be triggered via NotifyOnUIThread. base::Callback<void(const std::list<FileSystemInfo>&)> completion_callback_; - // Indicates whether or not we're currently fetching information: set to true - // when StartFetching is called on the UI thread, and reset to false when - // NotifyOnUIThread triggers the success callback. - // This property only mutates on the UI thread. - bool is_fetching_; - DISALLOW_COPY_AND_ASSIGN(CannedBrowsingDataFileSystemHelper); }; |