HomeSort by relevance Sort by last modified time
    Searched refs:task_log (Results 1 - 9 of 9) sorted by null

  /external/chromium_org/chrome/browser/sync_file_system/
task_logger.h 37 virtual void OnLogRecorded(const TaskLog& task_log) = 0;
  /external/chromium_org/chrome/browser/ui/webui/sync_file_system_internals/
sync_file_system_internals_handler.h 46 const sync_file_system::TaskLogger::TaskLog& task_log) OVERRIDE;
sync_file_system_internals_handler.cc 96 const sync_file_system::TaskLogger::TaskLog& task_log) {
98 int64 duration = (task_log.end_time - task_log.start_time).InMilliseconds();
100 dict.SetString("task_description", task_log.task_description);
101 dict.SetString("result_description", task_log.result_description);
104 details->AppendStrings(task_log.details);
  /external/chromium_org/chrome/browser/sync_file_system/drive_backend/
sync_task_manager.cc 172 scoped_ptr<TaskLogger::TaskLog> task_log = current_task_token->PassTaskLog(); local
180 task_log.Pass(),
257 scoped_ptr<TaskLogger::TaskLog> task_log,
266 foreground_task_token->SetTaskLog(task_log.Pass());
290 base::Passed(&task_log),
316 base::Passed(&task_log),
341 background_task_token->SetTaskLog(task_log.Pass());
sync_task_manager.h 66 virtual void RecordTaskLog(scoped_ptr<TaskLogger::TaskLog> task_log) = 0;
147 scoped_ptr<TaskLogger::TaskLog> task_log,
sync_task_token.cc 133 void SyncTaskToken::SetTaskLog(scoped_ptr<TaskLogger::TaskLog> task_log) {
134 task_log_ = task_log.Pass();
sync_task_token.h 64 void SetTaskLog(scoped_ptr<TaskLogger::TaskLog> task_log);
sync_worker.h 69 virtual void RecordTaskLog(scoped_ptr<TaskLogger::TaskLog> task_log) OVERRIDE;
sync_worker.cc 300 void SyncWorker::RecordTaskLog(scoped_ptr<TaskLogger::TaskLog> task_log) {
307 base::Passed(&task_log)));

Completed in 206 milliseconds