| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 "components/drive/file_system/create_directory_operation.h" | 5 #include "components/drive/file_system/create_directory_operation.h" |
| 6 | 6 |
| 7 #include <stddef.h> |
| 8 |
| 7 #include "components/drive/drive.pb.h" | 9 #include "components/drive/drive.pb.h" |
| 8 #include "components/drive/file_change.h" | 10 #include "components/drive/file_change.h" |
| 9 #include "components/drive/file_system/operation_delegate.h" | 11 #include "components/drive/file_system/operation_delegate.h" |
| 10 #include "components/drive/file_system_core_util.h" | 12 #include "components/drive/file_system_core_util.h" |
| 11 #include "components/drive/job_scheduler.h" | 13 #include "components/drive/job_scheduler.h" |
| 12 #include "components/drive/resource_metadata.h" | 14 #include "components/drive/resource_metadata.h" |
| 13 | 15 |
| 14 namespace drive { | 16 namespace drive { |
| 15 namespace file_system { | 17 namespace file_system { |
| 16 | 18 |
| (...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 delegate_->OnEntryUpdatedByOperation(ClientContext(USER_INITIATED), id); | 175 delegate_->OnEntryUpdatedByOperation(ClientContext(USER_INITIATED), id); |
| 174 } | 176 } |
| 175 | 177 |
| 176 delegate_->OnFileChangedByOperation(*changed_files); | 178 delegate_->OnFileChangedByOperation(*changed_files); |
| 177 | 179 |
| 178 callback.Run(error); | 180 callback.Run(error); |
| 179 } | 181 } |
| 180 | 182 |
| 181 } // namespace file_system | 183 } // namespace file_system |
| 182 } // namespace drive | 184 } // namespace drive |
| OLD | NEW |