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 "components/update_client/test/test_configurator.h" | 5 #include "components/update_client/test_configurator.h" |
6 | 6 |
7 #include "base/run_loop.h" | 7 #include "base/run_loop.h" |
8 #include "base/version.h" | 8 #include "base/version.h" |
9 #include "components/update_client/component_patcher_operation.h" | 9 #include "components/update_client/component_patcher_operation.h" |
10 #include "url/gurl.h" | 10 #include "url/gurl.h" |
11 | 11 |
12 namespace update_client { | 12 namespace update_client { |
13 | 13 |
14 namespace { | 14 namespace { |
15 | 15 |
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
149 return worker_task_runner_; | 149 return worker_task_runner_; |
150 } | 150 } |
151 | 151 |
152 scoped_refptr<base::SingleThreadTaskRunner> | 152 scoped_refptr<base::SingleThreadTaskRunner> |
153 TestConfigurator::GetSingleThreadTaskRunner() const { | 153 TestConfigurator::GetSingleThreadTaskRunner() const { |
154 // This is NULL because tests do not use the background downloader. | 154 // This is NULL because tests do not use the background downloader. |
155 return NULL; | 155 return NULL; |
156 } | 156 } |
157 | 157 |
158 } // namespace update_client | 158 } // namespace update_client |
OLD | NEW |