Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(95)

Side by Side Diff: components/autofill/content/common/autofill_messages.h

Issue 293093002: Don't show "Save password" prompt for a failed login (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Multiply-included message file, hence no include guard. 5 // Multiply-included message file, hence no include guard.
6 6
7 #include <string> 7 #include <string>
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/strings/string16.h" 10 #include "base/strings/string16.h"
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 IPC_MESSAGE_ROUTED2(AutofillHostMsg_FormsSeen, 183 IPC_MESSAGE_ROUTED2(AutofillHostMsg_FormsSeen,
184 std::vector<autofill::FormData> /* forms */, 184 std::vector<autofill::FormData> /* forms */,
185 base::TimeTicks /* timestamp */) 185 base::TimeTicks /* timestamp */)
186 186
187 // Notification that password forms have been seen that are candidates for 187 // Notification that password forms have been seen that are candidates for
188 // filling/submitting by the password manager. 188 // filling/submitting by the password manager.
189 IPC_MESSAGE_ROUTED1(AutofillHostMsg_PasswordFormsParsed, 189 IPC_MESSAGE_ROUTED1(AutofillHostMsg_PasswordFormsParsed,
190 std::vector<autofill::PasswordForm> /* forms */) 190 std::vector<autofill::PasswordForm> /* forms */)
191 191
192 // Notification that initial layout has occurred and the following password 192 // Notification that initial layout has occurred and the following password
193 // forms are visible on the page (e.g. not set to display:none.) 193 // forms are visible on the page (e.g. not set to display:none.), and if
vabr (Chromium) 2014/05/23 12:18:36 nit: if -> whether
194 IPC_MESSAGE_ROUTED1(AutofillHostMsg_PasswordFormsRendered, 194 // all frames in the page have been rendered.
195 std::vector<autofill::PasswordForm> /* forms */) 195 IPC_MESSAGE_ROUTED2(AutofillHostMsg_PasswordFormsRendered,
196 std::vector<autofill::PasswordForm> /* forms */,
197 bool /* true if all frames have been rendered */)
196 198
197 // Notification that this password form was submitted by the user. 199 // Notification that this password form was submitted by the user.
198 IPC_MESSAGE_ROUTED1(AutofillHostMsg_PasswordFormSubmitted, 200 IPC_MESSAGE_ROUTED1(AutofillHostMsg_PasswordFormSubmitted,
199 autofill::PasswordForm /* form */) 201 autofill::PasswordForm /* form */)
200 202
201 // Sends |log| to browser for displaying to the user. Only strings passed as an 203 // Sends |log| to browser for displaying to the user. Only strings passed as an
202 // argument to methods overriding SavePasswordProgressLogger::SendLog may become 204 // argument to methods overriding SavePasswordProgressLogger::SendLog may become
203 // |log|, because those are guaranteed to be sanitized. Never pass a free-form 205 // |log|, because those are guaranteed to be sanitized. Never pass a free-form
204 // string as |log|. 206 // string as |log|.
205 IPC_MESSAGE_ROUTED1(AutofillHostMsg_RecordSavePasswordProgress, 207 IPC_MESSAGE_ROUTED1(AutofillHostMsg_RecordSavePasswordProgress,
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
274 IPC_MESSAGE_ROUTED4(AutofillHostMsg_ShowPasswordSuggestions, 276 IPC_MESSAGE_ROUTED4(AutofillHostMsg_ShowPasswordSuggestions,
275 autofill::FormFieldData /* the form field */, 277 autofill::FormFieldData /* the form field */,
276 gfx::RectF /* input field bounds, window-relative */, 278 gfx::RectF /* input field bounds, window-relative */,
277 std::vector<base::string16> /* suggestions */, 279 std::vector<base::string16> /* suggestions */,
278 std::vector<base::string16> /* realms */) 280 std::vector<base::string16> /* realms */)
279 281
280 // Inform browser of data list values for the curent field. 282 // Inform browser of data list values for the curent field.
281 IPC_MESSAGE_ROUTED2(AutofillHostMsg_SetDataList, 283 IPC_MESSAGE_ROUTED2(AutofillHostMsg_SetDataList,
282 std::vector<base::string16> /* values */, 284 std::vector<base::string16> /* values */,
283 std::vector<base::string16> /* labels */) 285 std::vector<base::string16> /* labels */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698