| Index: chrome/browser/ui/passwords/manage_passwords_view_utils.cc
|
| diff --git a/chrome/browser/ui/passwords/manage_passwords_view_utils.cc b/chrome/browser/ui/passwords/manage_passwords_view_utils.cc
|
| index 02ea978445b1169fa485fec2e96b6f595e1dd7af..3b15970ba5ee2580fa7332f2e05ba0f3feaa9b5e 100644
|
| --- a/chrome/browser/ui/passwords/manage_passwords_view_utils.cc
|
| +++ b/chrome/browser/ui/passwords/manage_passwords_view_utils.cc
|
| @@ -39,11 +39,12 @@ void GetSavePasswordDialogTitleTextAndLinkRange(
|
| const GURL& user_visible_url,
|
| const GURL& form_origin_url,
|
| bool is_smartlock_branding_enabled,
|
| + bool is_change_password,
|
| base::string16* title,
|
| gfx::Range* title_link_range) {
|
| std::vector<size_t> offsets;
|
| std::vector<base::string16> replacements;
|
| - int title_id = IDS_SAVE_PASSWORD;
|
| + int title_id = is_change_password ? IDS_UPDATE_PASSWORD : IDS_SAVE_PASSWORD;
|
|
|
| // Check whether the registry controlled domains for user-visible URL (i.e.
|
| // the one seen in the omnibox) and the password form post-submit navigation
|
|
|