| 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 16 matching lines...) Expand all Loading... |
| 27 true) {} | 27 true) {} |
| 28 | 28 |
| 29 int ChromeUpdateClientConfig::InitialDelay() const { | 29 int ChromeUpdateClientConfig::InitialDelay() const { |
| 30 return impl_.InitialDelay(); | 30 return impl_.InitialDelay(); |
| 31 } | 31 } |
| 32 | 32 |
| 33 int ChromeUpdateClientConfig::NextCheckDelay() const { | 33 int ChromeUpdateClientConfig::NextCheckDelay() const { |
| 34 return impl_.NextCheckDelay(); | 34 return impl_.NextCheckDelay(); |
| 35 } | 35 } |
| 36 | 36 |
| 37 int ChromeUpdateClientConfig::StepDelay() const { | |
| 38 return impl_.StepDelay(); | |
| 39 } | |
| 40 | |
| 41 int ChromeUpdateClientConfig::OnDemandDelay() const { | 37 int ChromeUpdateClientConfig::OnDemandDelay() const { |
| 42 return impl_.OnDemandDelay(); | 38 return impl_.OnDemandDelay(); |
| 43 } | 39 } |
| 44 | 40 |
| 45 int ChromeUpdateClientConfig::UpdateDelay() const { | 41 int ChromeUpdateClientConfig::UpdateDelay() const { |
| 46 return 0; | 42 return 0; |
| 47 } | 43 } |
| 48 | 44 |
| 49 std::vector<GURL> ChromeUpdateClientConfig::UpdateUrl() const { | 45 std::vector<GURL> ChromeUpdateClientConfig::UpdateUrl() const { |
| 50 return impl_.UpdateUrl(); | 46 return impl_.UpdateUrl(); |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 return nullptr; | 114 return nullptr; |
| 119 } | 115 } |
| 120 | 116 |
| 121 bool ChromeUpdateClientConfig::IsPerUserInstall() const { | 117 bool ChromeUpdateClientConfig::IsPerUserInstall() const { |
| 122 return component_updater::IsPerUserInstall(); | 118 return component_updater::IsPerUserInstall(); |
| 123 } | 119 } |
| 124 | 120 |
| 125 ChromeUpdateClientConfig::~ChromeUpdateClientConfig() {} | 121 ChromeUpdateClientConfig::~ChromeUpdateClientConfig() {} |
| 126 | 122 |
| 127 } // namespace extensions | 123 } // namespace extensions |
| OLD | NEW |