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

Side by Side Diff: components/update_client/update_checker.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_checker.h" 5 #include "components/update_client/update_checker.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 8
9 #include <memory> 9 #include <memory>
10 #include <string> 10 #include <string>
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/location.h" 15 #include "base/location.h"
16 #include "base/logging.h" 16 #include "base/logging.h"
17 #include "base/macros.h" 17 #include "base/macros.h"
18 #include "base/strings/stringprintf.h" 18 #include "base/strings/stringprintf.h"
19 #include "base/thread_task_runner_handle.h"
20 #include "base/threading/thread_checker.h" 19 #include "base/threading/thread_checker.h"
20 #include "base/threading/thread_task_runner_handle.h"
21 #include "components/update_client/configurator.h" 21 #include "components/update_client/configurator.h"
22 #include "components/update_client/crx_update_item.h" 22 #include "components/update_client/crx_update_item.h"
23 #include "components/update_client/persisted_data.h" 23 #include "components/update_client/persisted_data.h"
24 #include "components/update_client/request_sender.h" 24 #include "components/update_client/request_sender.h"
25 #include "components/update_client/utils.h" 25 #include "components/update_client/utils.h"
26 #include "url/gurl.h" 26 #include "url/gurl.h"
27 27
28 namespace update_client { 28 namespace update_client {
29 29
30 namespace { 30 namespace {
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
201 } // namespace 201 } // namespace
202 202
203 std::unique_ptr<UpdateChecker> UpdateChecker::Create( 203 std::unique_ptr<UpdateChecker> UpdateChecker::Create(
204 const scoped_refptr<Configurator>& config, 204 const scoped_refptr<Configurator>& config,
205 PersistedData* persistent) { 205 PersistedData* persistent) {
206 return std::unique_ptr<UpdateChecker>( 206 return std::unique_ptr<UpdateChecker>(
207 new UpdateCheckerImpl(config, persistent)); 207 new UpdateCheckerImpl(config, persistent));
208 } 208 }
209 209
210 } // namespace update_client 210 } // namespace update_client
OLDNEW
« no previous file with comments | « components/update_client/task_update.cc ('k') | components/update_client/update_checker_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698