Commit 65c419d8 authored by Fabio Tirelo's avatar Fabio Tirelo Committed by Commit Bot

[AF] Use 'Manage...' as footer string when popup type is unspecified

Bug: 893592
Change-Id: I619bb47295302ba74301c327372206269c12bf23
Reviewed-on: https://chromium-review.googlesource.com/c/1293729
Commit-Queue: Fabio Tirelo <ftirelo@chromium.org>
Commit-Queue: Tommy Martino <tmartino@chromium.org>
Reviewed-by: default avatarTommy Martino <tmartino@chromium.org>
Reviewed-by: default avatarSebastien Seguin-Gagnon <sebsg@chromium.org>
Cr-Commit-Position: refs/heads/master@{#601618}
parent 1a29d51e
......@@ -12,6 +12,7 @@
#include "base/command_line.h"
#include "base/feature_list.h"
#include "base/i18n/case_conversion.h"
#include "base/logging.h"
#include "base/stl_util.h"
#include "base/strings/string_util.h"
#include "base/strings/utf_string_conversions.h"
......@@ -437,9 +438,11 @@ base::string16 AutofillExternalDelegate::GetSettingsSuggestionValue()
return l10n_util::GetStringUTF16(IDS_AUTOFILL_MANAGE_PAYMENT_METHODS);
case PopupType::kPersonalInformation:
case PopupType::kUnspecified:
return l10n_util::GetStringUTF16(IDS_AUTOFILL_MANAGE);
default:
case PopupType::kPasswords:
NOTREACHED();
return base::string16();
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment