| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 "base/command_line.h" | 5 #include "base/command_line.h" |
| 6 #include "base/version.h" | 6 #include "base/version.h" |
| 7 #include "chrome/browser/component_updater/component_patcher_operation_out_of_pr
ocess.h" | 7 #include "chrome/browser/component_updater/component_patcher_operation_out_of_pr
ocess.h" |
| 8 #include "chrome/browser/extensions/updater/chrome_update_client_config.h" | 8 #include "chrome/browser/extensions/updater/chrome_update_client_config.h" |
| 9 #include "chrome/browser/update_client/chrome_update_query_params_delegate.h" | 9 #include "chrome/browser/update_client/chrome_update_query_params_delegate.h" |
| 10 #include "chrome/common/channel_info.h" | 10 #include "chrome/common/channel_info.h" |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 } | 80 } |
| 81 | 81 |
| 82 bool ChromeUpdateClientConfig::DeltasEnabled() const { | 82 bool ChromeUpdateClientConfig::DeltasEnabled() const { |
| 83 return impl_.DeltasEnabled(); | 83 return impl_.DeltasEnabled(); |
| 84 } | 84 } |
| 85 | 85 |
| 86 bool ChromeUpdateClientConfig::UseBackgroundDownloader() const { | 86 bool ChromeUpdateClientConfig::UseBackgroundDownloader() const { |
| 87 return impl_.UseBackgroundDownloader(); | 87 return impl_.UseBackgroundDownloader(); |
| 88 } | 88 } |
| 89 | 89 |
| 90 bool ChromeUpdateClientConfig::UseCupSigning() const { |
| 91 return false; |
| 92 } |
| 93 |
| 90 ChromeUpdateClientConfig::~ChromeUpdateClientConfig() {} | 94 ChromeUpdateClientConfig::~ChromeUpdateClientConfig() {} |
| 91 | 95 |
| 92 } // namespace extensions | 96 } // namespace extensions |
| OLD | NEW |