| Index: chrome/browser/ui/webui/help/help_handler.cc
|
| diff --git a/chrome/browser/ui/webui/help/help_handler.cc b/chrome/browser/ui/webui/help/help_handler.cc
|
| index d0a18970628713416f79d8221903fc78c40b4e44..6f729d1651b14c87d32dfb19c9db0322a699540d 100644
|
| --- a/chrome/browser/ui/webui/help/help_handler.cc
|
| +++ b/chrome/browser/ui/webui/help/help_handler.cc
|
| @@ -98,7 +98,10 @@ struct RegulatoryLabel {
|
| // Returns message that informs user that for update it's better to
|
| // connect to a network of one of the allowed types.
|
| base::string16 GetAllowedConnectionTypesMessage() {
|
| - if (help_utils_chromeos::IsUpdateOverCellularAllowed()) {
|
| + // Old help page does not support interactive-updates over cellular, so just
|
| + // sets |interactive| to false to make its behavior the same as before.
|
| + if (help_utils_chromeos::IsUpdateOverCellularAllowed(
|
| + false /* interactive */)) {
|
| return l10n_util::GetStringUTF16(IDS_UPGRADE_NETWORK_LIST_CELLULAR_ALLOWED);
|
| } else {
|
| return l10n_util::GetStringUTF16(
|
|
|