| 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 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 } | 171 } |
| 172 | 172 |
| 173 bool ConfiguratorImpl::DeltasEnabled() const { | 173 bool ConfiguratorImpl::DeltasEnabled() const { |
| 174 return deltas_enabled_; | 174 return deltas_enabled_; |
| 175 } | 175 } |
| 176 | 176 |
| 177 bool ConfiguratorImpl::UseBackgroundDownloader() const { | 177 bool ConfiguratorImpl::UseBackgroundDownloader() const { |
| 178 return background_downloads_enabled_; | 178 return background_downloads_enabled_; |
| 179 } | 179 } |
| 180 | 180 |
| 181 bool ConfiguratorImpl::UseCupSigning() const { |
| 182 return true; |
| 183 } |
| 184 |
| 181 } // namespace component_updater | 185 } // namespace component_updater |
| OLD | NEW |