Chromium Code Reviews| Index: chrome/browser/component_updater/chrome_component_updater_configurator.cc |
| diff --git a/chrome/browser/component_updater/chrome_component_updater_configurator.cc b/chrome/browser/component_updater/chrome_component_updater_configurator.cc |
| index 2fccab7600c25f879debd3408cc1d674928a4498..9ac75ffaa9e097def387a7a8f81f020a923349ef 100644 |
| --- a/chrome/browser/component_updater/chrome_component_updater_configurator.cc |
| +++ b/chrome/browser/component_updater/chrome_component_updater_configurator.cc |
| @@ -149,9 +149,8 @@ std::string ChromeConfigurator::ExtraRequestParams() const { |
| std::string ChromeConfigurator::GetDownloadPreference() const { |
| #if defined(OS_WIN) |
| - // This group policy is supported only on Windows and only for computers |
| - // which are joined to a Windows domain. |
| - return base::win::IsEnrolledToDomain() |
| + // This group policy is supported only on Windows and only for enterprises. |
| + return base::win::IsEnterpriseManaged() |
| ? base::SysWideToUTF8( |
| GoogleUpdateSettings::GetDownloadPreference()) |
| : std::string(""); |
|
sky
2017/02/15 21:27:15
std::string("") -> std::string()
Roger Tawa OOO till Jul 10th
2017/02/17 19:20:13
Done.
|