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

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

Issue 767353002: Support for password manager suggestions on password fields. (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: Added message value to iOS grit whitelist Created 6 years 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 280 matching lines...) Expand 10 before | Expand all | Expand 10 after
291 IPC_MESSAGE_ROUTED2(AutofillHostMsg_ShowPasswordEditingPopup, 291 IPC_MESSAGE_ROUTED2(AutofillHostMsg_ShowPasswordEditingPopup,
292 gfx::RectF /* source location */, 292 gfx::RectF /* source location */,
293 autofill::PasswordForm) 293 autofill::PasswordForm)
294 294
295 // Instructs the browser to hide any password generation popups. 295 // Instructs the browser to hide any password generation popups.
296 IPC_MESSAGE_ROUTED0(AutofillHostMsg_HidePasswordGenerationPopup) 296 IPC_MESSAGE_ROUTED0(AutofillHostMsg_HidePasswordGenerationPopup)
297 297
298 // Instruct the browser to show a popup with suggestions filled from data 298 // Instruct the browser to show a popup with suggestions filled from data
299 // associated with |key|. The popup will use |text_direction| for displaying 299 // associated with |key|. The popup will use |text_direction| for displaying
300 // text. 300 // text.
301 IPC_MESSAGE_ROUTED5(AutofillHostMsg_ShowPasswordSuggestions, 301 IPC_MESSAGE_ROUTED5(
302 int /* key */, 302 AutofillHostMsg_ShowPasswordSuggestions,
303 base::i18n::TextDirection /*text_direction */, 303 int /* key */,
304 base::string16 /* username typed by user */, 304 base::i18n::TextDirection /* text_direction */,
305 bool /* show all suggestions */, 305 base::string16 /* username typed by user */,
306 gfx::RectF /* input field bounds, window-relative */) 306 int /* options bitmask of autofill::ShowPasswordSuggestionsOptions */,
307 gfx::RectF /* input field bounds, window-relative */)
307 308
308 // Inform browser of data list values for the curent field. 309 // Inform browser of data list values for the curent field.
309 IPC_MESSAGE_ROUTED2(AutofillHostMsg_SetDataList, 310 IPC_MESSAGE_ROUTED2(AutofillHostMsg_SetDataList,
310 std::vector<base::string16> /* values */, 311 std::vector<base::string16> /* values */,
311 std::vector<base::string16> /* labels */) 312 std::vector<base::string16> /* labels */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698