| 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/component_updater/component_updater_utils.h" | 8 #include "chrome/browser/component_updater/component_updater_utils.h" |
| 9 #include "chrome/browser/extensions/updater/chrome_update_client_config.h" | 9 #include "chrome/browser/extensions/updater/chrome_update_client_config.h" |
| 10 #include "chrome/browser/google/google_brand.h" | 10 #include "chrome/browser/google/google_brand.h" |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 } | 115 } |
| 116 | 116 |
| 117 PrefService* ChromeUpdateClientConfig::GetPrefService() const { | 117 PrefService* ChromeUpdateClientConfig::GetPrefService() const { |
| 118 return nullptr; | 118 return nullptr; |
| 119 } | 119 } |
| 120 | 120 |
| 121 bool ChromeUpdateClientConfig::IsPerUserInstall() const { | 121 bool ChromeUpdateClientConfig::IsPerUserInstall() const { |
| 122 return component_updater::IsPerUserInstall(); | 122 return component_updater::IsPerUserInstall(); |
| 123 } | 123 } |
| 124 | 124 |
| 125 bool ChromeUpdateClientConfig::EnabledImprovedRecovery() const { |
| 126 return false; |
| 127 } |
| 128 |
| 125 ChromeUpdateClientConfig::~ChromeUpdateClientConfig() {} | 129 ChromeUpdateClientConfig::~ChromeUpdateClientConfig() {} |
| 126 | 130 |
| 127 } // namespace extensions | 131 } // namespace extensions |
| OLD | NEW |