OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/sync_file_system/drive_backend/sync_task_manager.h" | 5 #include "chrome/browser/sync_file_system/drive_backend/sync_task_manager.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/location.h" | 8 #include "base/location.h" |
9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
| 10 #include "chrome/browser/sync_file_system/drive_backend/sync_task.h" |
10 #include "chrome/browser/sync_file_system/drive_backend/sync_task_token.h" | 11 #include "chrome/browser/sync_file_system/drive_backend/sync_task_token.h" |
11 #include "chrome/browser/sync_file_system/sync_file_metadata.h" | 12 #include "chrome/browser/sync_file_system/sync_file_metadata.h" |
12 | 13 |
13 using fileapi::FileSystemURL; | 14 using fileapi::FileSystemURL; |
14 | 15 |
15 namespace sync_file_system { | 16 namespace sync_file_system { |
16 namespace drive_backend { | 17 namespace drive_backend { |
17 | 18 |
18 namespace { | 19 namespace { |
19 | 20 |
(...skipping 352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
372 closure.Run(); | 373 closure.Run(); |
373 return; | 374 return; |
374 } | 375 } |
375 | 376 |
376 if (client_) | 377 if (client_) |
377 client_->MaybeScheduleNextTask(); | 378 client_->MaybeScheduleNextTask(); |
378 } | 379 } |
379 | 380 |
380 } // namespace drive_backend | 381 } // namespace drive_backend |
381 } // namespace sync_file_system | 382 } // namespace sync_file_system |
OLD | NEW |