| Index: chrome/browser/autofill/autofill_manager.cc
|
| diff --git a/chrome/browser/autofill/autofill_manager.cc b/chrome/browser/autofill/autofill_manager.cc
|
| index 9a16f3f24bcd42a468823f881af29bdde6d3ef1e..0136f79d0b9e286643ad2957b6c761641926f067 100644
|
| --- a/chrome/browser/autofill/autofill_manager.cc
|
| +++ b/chrome/browser/autofill/autofill_manager.cc
|
| @@ -62,6 +62,7 @@
|
| #include "webkit/forms/form_data_predictions.h"
|
| #include "webkit/forms/form_field.h"
|
| #include "webkit/forms/password_form_dom_manager.h"
|
| +#include "third_party/WebKit/Source/WebKit/chromium/public/WebAutofillClient.h"
|
|
|
| using base::TimeTicks;
|
| using content::BrowserThread;
|
| @@ -480,7 +481,8 @@ void AutofillManager::OnQueryFormFieldAutofill(int query_id,
|
| values.assign(1, l10n_util::GetStringUTF16(warning));
|
| labels.assign(1, string16());
|
| icons.assign(1, string16());
|
| - unique_ids.assign(1, -1);
|
| + unique_ids.assign(1,
|
| + WebKit::WebAutofillClient::MenuItemIDWarningMessage);
|
| } else {
|
| bool section_is_autofilled =
|
| SectionIsAutofilled(*form_structure, form,
|
|
|