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

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

Issue 1028163002: Processing USERNAME reply from Autofill server in Password Manager (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Reviewer's comments addressed Created 5 years, 9 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 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
188 IPC_MESSAGE_ROUTED3(AutofillMsg_RequestAutocompleteResult, 188 IPC_MESSAGE_ROUTED3(AutofillMsg_RequestAutocompleteResult,
189 blink::WebFormElement::AutocompleteResult /* result */, 189 blink::WebFormElement::AutocompleteResult /* result */,
190 base::string16 /* message */, 190 base::string16 /* message */,
191 autofill::FormData /* form_data */) 191 autofill::FormData /* form_data */)
192 192
193 // Sent when Autofill manager gets the query response from the Autofill server 193 // Sent when Autofill manager gets the query response from the Autofill server
194 // and there are fields classified as ACCOUNT_CREATION_PASSWORD in the response. 194 // and there are fields classified as ACCOUNT_CREATION_PASSWORD in the response.
195 IPC_MESSAGE_ROUTED1(AutofillMsg_AccountCreationFormsDetected, 195 IPC_MESSAGE_ROUTED1(AutofillMsg_AccountCreationFormsDetected,
196 std::vector<autofill::FormData> /* forms */) 196 std::vector<autofill::FormData> /* forms */)
197 197
198 // Sent when Autofill manager gets the query response from the Autofill server
199 // which contains data that are interesting for PasswordAutofillAgent.
200 IPC_MESSAGE_ROUTED1(AutofillMsg_AutofillPasswordDataReceived,
201 std::vector<autofill::FormDataPredictions> /* forms */)
202
198 // Autofill messages sent from the renderer to the browser. 203 // Autofill messages sent from the renderer to the browser.
199 204
200 // TODO(creis): check in the browser that the renderer actually has permission 205 // TODO(creis): check in the browser that the renderer actually has permission
201 // for the URL to avoid compromised renderers talking to the browser. 206 // for the URL to avoid compromised renderers talking to the browser.
202 207
203 // Notification that there has been a user gesture. 208 // Notification that there has been a user gesture.
204 IPC_MESSAGE_ROUTED0(AutofillHostMsg_FirstUserGestureObserved) 209 IPC_MESSAGE_ROUTED0(AutofillHostMsg_FirstUserGestureObserved)
205 210
206 // Notification that forms have been seen that are candidates for 211 // Notification that forms have been seen that are candidates for
207 // filling/submitting by the AutofillManager. 212 // filling/submitting by the AutofillManager.
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
311 int /* key */, 316 int /* key */,
312 base::i18n::TextDirection /* text_direction */, 317 base::i18n::TextDirection /* text_direction */,
313 base::string16 /* username typed by user */, 318 base::string16 /* username typed by user */,
314 int /* options bitmask of autofill::ShowPasswordSuggestionsOptions */, 319 int /* options bitmask of autofill::ShowPasswordSuggestionsOptions */,
315 gfx::RectF /* input field bounds, window-relative */) 320 gfx::RectF /* input field bounds, window-relative */)
316 321
317 // Inform browser of data list values for the curent field. 322 // Inform browser of data list values for the curent field.
318 IPC_MESSAGE_ROUTED2(AutofillHostMsg_SetDataList, 323 IPC_MESSAGE_ROUTED2(AutofillHostMsg_SetDataList,
319 std::vector<base::string16> /* values */, 324 std::vector<base::string16> /* values */,
320 std::vector<base::string16> /* labels */) 325 std::vector<base::string16> /* labels */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698