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

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

Issue 136113019: Cleanup: Remove some unused code, or make them platform specific. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix build Created 6 years, 11 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/browsing_data_file_system_helper.h
===================================================================
--- chrome/browser/browsing_data/browsing_data_file_system_helper.h (revision 246675)
+++ chrome/browser/browsing_data/browsing_data_file_system_helper.h (working copy)
@@ -144,23 +144,13 @@
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);
};
« no previous file with comments | « chrome/browser/browser_process_impl.cc ('k') | chrome/browser/browsing_data/browsing_data_file_system_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698