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

Side by Side Diff: chrome/browser/sync_file_system/drive_backend/sync_task_manager.cc

Issue 337313002: [SyncFS] Remove unneeded #include from sync_task_manager.h (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698