Chromium Code Reviews

Side by Side Diff: chrome/browser/component_updater/component_updater_configurator.cc

Issue 25883006: Support asynchronous patching operations in the component updater. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@tests
Patch Set: sorin@ review Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
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/component_updater/component_updater_configurator.h" 5 #include "chrome/browser/component_updater/component_updater_configurator.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 206 matching lines...)
217 bool ChromeConfigurator::UseBackgroundDownloader() const { 217 bool ChromeConfigurator::UseBackgroundDownloader() const {
218 return background_downloads_enabled_; 218 return background_downloads_enabled_;
219 } 219 }
220 220
221 ComponentUpdateService::Configurator* MakeChromeComponentUpdaterConfigurator( 221 ComponentUpdateService::Configurator* MakeChromeComponentUpdaterConfigurator(
222 const CommandLine* cmdline, net::URLRequestContextGetter* context_getter) { 222 const CommandLine* cmdline, net::URLRequestContextGetter* context_getter) {
223 return new ChromeConfigurator(cmdline, context_getter); 223 return new ChromeConfigurator(cmdline, context_getter);
224 } 224 }
225 225
226 } // namespace component_updater 226 } // namespace component_updater
227
OLDNEW
« no previous file with comments | « chrome/browser/component_updater/component_unpacker.cc ('k') | chrome/browser/component_updater/component_updater_service.h » ('j') | no next file with comments »

Powered by Google App Engine