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

Side by Side Diff: chrome/browser/sync_file_system/sync_file_system_service.cc

Issue 1967773004: Fix include path for moved thread_task_runner_handle.h header in chrome/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@a1_move_task_runner_handle
Patch Set: merge up to r393013 Created 4 years, 7 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/sync_file_system_service.h" 5 #include "chrome/browser/sync_file_system/sync_file_system_service.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <string> 10 #include <string>
11 #include <utility> 11 #include <utility>
12 12
13 #include "base/bind.h" 13 #include "base/bind.h"
14 #include "base/format_macros.h" 14 #include "base/format_macros.h"
15 #include "base/logging.h" 15 #include "base/logging.h"
16 #include "base/macros.h" 16 #include "base/macros.h"
17 #include "base/memory/ptr_util.h" 17 #include "base/memory/ptr_util.h"
18 #include "base/memory/ref_counted.h" 18 #include "base/memory/ref_counted.h"
19 #include "base/metrics/histogram.h" 19 #include "base/metrics/histogram.h"
20 #include "base/single_thread_task_runner.h" 20 #include "base/single_thread_task_runner.h"
21 #include "base/stl_util.h" 21 #include "base/stl_util.h"
22 #include "base/thread_task_runner_handle.h" 22 #include "base/threading/thread_task_runner_handle.h"
23 #include "chrome/browser/extensions/api/sync_file_system/extension_sync_event_ob server.h" 23 #include "chrome/browser/extensions/api/sync_file_system/extension_sync_event_ob server.h"
24 #include "chrome/browser/extensions/api/sync_file_system/sync_file_system_api_he lpers.h" 24 #include "chrome/browser/extensions/api/sync_file_system/sync_file_system_api_he lpers.h"
25 #include "chrome/browser/profiles/profile.h" 25 #include "chrome/browser/profiles/profile.h"
26 #include "chrome/browser/sync/profile_sync_service_factory.h" 26 #include "chrome/browser/sync/profile_sync_service_factory.h"
27 #include "chrome/browser/sync_file_system/local/local_file_sync_service.h" 27 #include "chrome/browser/sync_file_system/local/local_file_sync_service.h"
28 #include "chrome/browser/sync_file_system/logger.h" 28 #include "chrome/browser/sync_file_system/logger.h"
29 #include "chrome/browser/sync_file_system/sync_direction.h" 29 #include "chrome/browser/sync_file_system/sync_direction.h"
30 #include "chrome/browser/sync_file_system/sync_event_observer.h" 30 #include "chrome/browser/sync_file_system/sync_event_observer.h"
31 #include "chrome/browser/sync_file_system/sync_file_metadata.h" 31 #include "chrome/browser/sync_file_system/sync_file_metadata.h"
32 #include "chrome/browser/sync_file_system/sync_process_runner.h" 32 #include "chrome/browser/sync_file_system/sync_process_runner.h"
(...skipping 732 matching lines...) Expand 10 before | Expand all | Expand 10 after
765 local_sync_runners_.begin(); 765 local_sync_runners_.begin();
766 iter != local_sync_runners_.end(); ++iter) 766 iter != local_sync_runners_.end(); ++iter)
767 ((*iter)->*method)(); 767 ((*iter)->*method)();
768 for (ScopedVector<SyncProcessRunner>::iterator iter = 768 for (ScopedVector<SyncProcessRunner>::iterator iter =
769 remote_sync_runners_.begin(); 769 remote_sync_runners_.begin();
770 iter != remote_sync_runners_.end(); ++iter) 770 iter != remote_sync_runners_.end(); ++iter)
771 ((*iter)->*method)(); 771 ((*iter)->*method)();
772 } 772 }
773 773
774 } // namespace sync_file_system 774 } // namespace sync_file_system
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698