| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/chromeos/drive/sync/entry_revert_performer.h" | 5 #include "chrome/browser/chromeos/drive/sync/entry_revert_performer.h" |
| 6 | 6 |
| 7 #include "chrome/browser/chromeos/drive/change_list_processor.h" | |
| 8 #include "chrome/browser/chromeos/drive/file_system/operation_delegate.h" | 7 #include "chrome/browser/chromeos/drive/file_system/operation_delegate.h" |
| 8 #include "components/drive/change_list_processor.h" |
| 9 #include "components/drive/drive.pb.h" | 9 #include "components/drive/drive.pb.h" |
| 10 #include "components/drive/drive_api_util.h" | 10 #include "components/drive/drive_api_util.h" |
| 11 #include "components/drive/file_change.h" | 11 #include "components/drive/file_change.h" |
| 12 #include "components/drive/job_scheduler.h" | 12 #include "components/drive/job_scheduler.h" |
| 13 #include "components/drive/resource_entry_conversion.h" | 13 #include "components/drive/resource_entry_conversion.h" |
| 14 #include "components/drive/resource_metadata.h" | 14 #include "components/drive/resource_metadata.h" |
| 15 #include "google_apis/drive/drive_api_parser.h" | 15 #include "google_apis/drive/drive_api_parser.h" |
| 16 | 16 |
| 17 namespace drive { | 17 namespace drive { |
| 18 namespace internal { | 18 namespace internal { |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 DCHECK(thread_checker_.CalledOnValidThread()); | 169 DCHECK(thread_checker_.CalledOnValidThread()); |
| 170 DCHECK(!callback.is_null()); | 170 DCHECK(!callback.is_null()); |
| 171 | 171 |
| 172 delegate_->OnFileChangedByOperation(*changed_files); | 172 delegate_->OnFileChangedByOperation(*changed_files); |
| 173 | 173 |
| 174 callback.Run(error); | 174 callback.Run(error); |
| 175 } | 175 } |
| 176 | 176 |
| 177 } // namespace internal | 177 } // namespace internal |
| 178 } // namespace drive | 178 } // namespace drive |
| OLD | NEW |