| 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/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 Loading... |
| 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 |
| OLD | NEW |