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

Side by Side Diff: components/update_client/update_client.cc

Issue 1970833002: Fix include path for moved thread_task_runner_handle.h header in components/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@a1_move_task_runner_handle
Patch Set: merge up to r393009 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 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 "components/update_client/update_client.h" 5 #include "components/update_client/update_client.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <queue> 8 #include <queue>
9 #include <set> 9 #include <set>
10 #include <utility> 10 #include <utility>
11 #include <vector> 11 #include <vector>
12 12
13 #include "base/bind.h" 13 #include "base/bind.h"
14 #include "base/bind_helpers.h" 14 #include "base/bind_helpers.h"
15 #include "base/callback.h" 15 #include "base/callback.h"
16 #include "base/location.h" 16 #include "base/location.h"
17 #include "base/logging.h" 17 #include "base/logging.h"
18 #include "base/macros.h" 18 #include "base/macros.h"
19 #include "base/observer_list.h" 19 #include "base/observer_list.h"
20 #include "base/sequenced_task_runner.h" 20 #include "base/sequenced_task_runner.h"
21 #include "base/single_thread_task_runner.h" 21 #include "base/single_thread_task_runner.h"
22 #include "base/thread_task_runner_handle.h"
23 #include "base/threading/sequenced_worker_pool.h" 22 #include "base/threading/sequenced_worker_pool.h"
24 #include "base/threading/thread_checker.h" 23 #include "base/threading/thread_checker.h"
24 #include "base/threading/thread_task_runner_handle.h"
25 #include "components/prefs/pref_registry_simple.h" 25 #include "components/prefs/pref_registry_simple.h"
26 #include "components/update_client/configurator.h" 26 #include "components/update_client/configurator.h"
27 #include "components/update_client/crx_update_item.h" 27 #include "components/update_client/crx_update_item.h"
28 #include "components/update_client/persisted_data.h" 28 #include "components/update_client/persisted_data.h"
29 #include "components/update_client/ping_manager.h" 29 #include "components/update_client/ping_manager.h"
30 #include "components/update_client/task_update.h" 30 #include "components/update_client/task_update.h"
31 #include "components/update_client/update_checker.h" 31 #include "components/update_client/update_checker.h"
32 #include "components/update_client/update_client_internal.h" 32 #include "components/update_client/update_client_internal.h"
33 #include "components/update_client/update_engine.h" 33 #include "components/update_client/update_engine.h"
34 #include "components/update_client/update_response.h" 34 #include "components/update_client/update_response.h"
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after
253 std::unique_ptr<PingManager> ping_manager(new PingManager(config)); 253 std::unique_ptr<PingManager> ping_manager(new PingManager(config));
254 return new UpdateClientImpl(config, std::move(ping_manager), 254 return new UpdateClientImpl(config, std::move(ping_manager),
255 &UpdateChecker::Create, &CrxDownloader::Create); 255 &UpdateChecker::Create, &CrxDownloader::Create);
256 } 256 }
257 257
258 void RegisterPrefs(PrefRegistrySimple* registry) { 258 void RegisterPrefs(PrefRegistrySimple* registry) {
259 PersistedData::RegisterPrefs(registry); 259 PersistedData::RegisterPrefs(registry);
260 } 260 }
261 261
262 } // namespace update_client 262 } // namespace update_client
OLDNEW
« no previous file with comments | « components/update_client/update_checker_unittest.cc ('k') | components/update_client/update_client_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698