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

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

Issue 688633004: Do not haul suggestions back to browser in AutofillHostMsg_ShowPasswordSuggestions (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Comments removed, iterator renamed Created 6 years, 1 month 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 267 matching lines...) Expand 10 before | Expand all | Expand 10 after
278 autofill::PasswordForm) 278 autofill::PasswordForm)
279 279
280 // Instructs the browser to hide any password generation popups. 280 // Instructs the browser to hide any password generation popups.
281 IPC_MESSAGE_ROUTED0(AutofillHostMsg_HidePasswordGenerationPopup) 281 IPC_MESSAGE_ROUTED0(AutofillHostMsg_HidePasswordGenerationPopup)
282 282
283 // Instruct the browser that a password mapping has been found for a field. 283 // Instruct the browser that a password mapping has been found for a field.
284 IPC_MESSAGE_ROUTED2(AutofillHostMsg_AddPasswordFormMapping, 284 IPC_MESSAGE_ROUTED2(AutofillHostMsg_AddPasswordFormMapping,
285 autofill::FormFieldData, /* the user name field */ 285 autofill::FormFieldData, /* the user name field */
286 autofill::PasswordFormFillData /* password pairings */) 286 autofill::PasswordFormFillData /* password pairings */)
287 287
288 // Instruct the browser to show a popup with the following suggestions from the 288 // Instruct the browser to show a popup with suggestions for the form field.
289 // password manager.
290 IPC_MESSAGE_ROUTED4(AutofillHostMsg_ShowPasswordSuggestions, 289 IPC_MESSAGE_ROUTED4(AutofillHostMsg_ShowPasswordSuggestions,
291 autofill::FormFieldData /* the form field */, 290 autofill::FormFieldData /* the form field */,
292 gfx::RectF /* input field bounds, window-relative */, 291 base::string16 /* username typed by user */,
293 std::vector<base::string16> /* suggestions */, 292 bool /* show all suggestions */,
294 std::vector<base::string16> /* realms */) 293 gfx::RectF /* input field bounds, window-relative */)
295 294
296 // Inform browser of data list values for the curent field. 295 // Inform browser of data list values for the curent field.
297 IPC_MESSAGE_ROUTED2(AutofillHostMsg_SetDataList, 296 IPC_MESSAGE_ROUTED2(AutofillHostMsg_SetDataList,
298 std::vector<base::string16> /* values */, 297 std::vector<base::string16> /* values */,
299 std::vector<base::string16> /* labels */) 298 std::vector<base::string16> /* labels */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698