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

Unified Diff: chrome/browser/sync_file_system/task_logger.h

Issue 298003003: [SyncFS] Wire TaskLogger to SyncTaskToken and SyncTaskManager (1/3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix Created 6 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
« no previous file with comments | « chrome/browser/sync_file_system/drive_backend/sync_task_token.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/sync_file_system/task_logger.h
diff --git a/chrome/browser/sync_file_system/task_logger.h b/chrome/browser/sync_file_system/task_logger.h
index a6e5f0a9ea6c0a92209719a342e45e6160117780..0f14aba2a1c66d2e9a30509304128a22e0536fcf 100644
--- a/chrome/browser/sync_file_system/task_logger.h
+++ b/chrome/browser/sync_file_system/task_logger.h
@@ -18,9 +18,10 @@ namespace sync_file_system {
class TaskLogger : public base::SupportsWeakPtr<TaskLogger> {
public:
struct TaskLog {
- base::TimeDelta duration;
- std::string type;
- std::string summary;
+ base::TimeTicks start_time;
+ base::TimeTicks end_time;
+ std::string task_description;
+ std::string result_description;
std::vector<std::string> details;
TaskLog();
« no previous file with comments | « chrome/browser/sync_file_system/drive_backend/sync_task_token.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698