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

Side by Side Diff: components/component_updater/configurator_impl.cc

Issue 2199423002: Mechanical change in the component updater Configurator. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 4 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
« no previous file with comments | « components/component_updater/configurator_impl.h ('k') | components/update_client/action.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/component_updater/configurator_impl.h" 5 #include "components/component_updater/configurator_impl.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 8
9 #include <algorithm> 9 #include <algorithm>
10 10
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 } 173 }
174 174
175 std::string ConfiguratorImpl::GetDownloadPreference() const { 175 std::string ConfiguratorImpl::GetDownloadPreference() const {
176 return std::string(); 176 return std::string();
177 } 177 }
178 178
179 net::URLRequestContextGetter* ConfiguratorImpl::RequestContext() const { 179 net::URLRequestContextGetter* ConfiguratorImpl::RequestContext() const {
180 return url_request_getter_; 180 return url_request_getter_;
181 } 181 }
182 182
183 bool ConfiguratorImpl::DeltasEnabled() const { 183 bool ConfiguratorImpl::EnabledDeltas() const {
184 return deltas_enabled_; 184 return deltas_enabled_;
185 } 185 }
186 186
187 bool ConfiguratorImpl::UseBackgroundDownloader() const { 187 bool ConfiguratorImpl::EnabledComponentUpdates() const {
188 return true;
189 }
190
191 bool ConfiguratorImpl::EnabledBackgroundDownloader() const {
188 return background_downloads_enabled_; 192 return background_downloads_enabled_;
189 } 193 }
190 194
191 bool ConfiguratorImpl::UseCupSigning() const { 195 bool ConfiguratorImpl::EnabledCupSigning() const {
192 return true; 196 return true;
193 } 197 }
194 198
195 } // namespace component_updater 199 } // namespace component_updater
OLDNEW
« no previous file with comments | « components/component_updater/configurator_impl.h ('k') | components/update_client/action.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698