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

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

Issue 1842693003: [Autofill] Fill fields where the value equals the placeholder attribute. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Nits Created 4 years, 8 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 27 matching lines...) Expand all
38 38
39 IPC_ENUM_TRAITS_MAX_VALUE(base::i18n::TextDirection, 39 IPC_ENUM_TRAITS_MAX_VALUE(base::i18n::TextDirection,
40 base::i18n::TEXT_DIRECTION_NUM_DIRECTIONS - 1) 40 base::i18n::TEXT_DIRECTION_NUM_DIRECTIONS - 1)
41 41
42 IPC_STRUCT_TRAITS_BEGIN(autofill::FormFieldData) 42 IPC_STRUCT_TRAITS_BEGIN(autofill::FormFieldData)
43 IPC_STRUCT_TRAITS_MEMBER(label) 43 IPC_STRUCT_TRAITS_MEMBER(label)
44 IPC_STRUCT_TRAITS_MEMBER(name) 44 IPC_STRUCT_TRAITS_MEMBER(name)
45 IPC_STRUCT_TRAITS_MEMBER(value) 45 IPC_STRUCT_TRAITS_MEMBER(value)
46 IPC_STRUCT_TRAITS_MEMBER(form_control_type) 46 IPC_STRUCT_TRAITS_MEMBER(form_control_type)
47 IPC_STRUCT_TRAITS_MEMBER(autocomplete_attribute) 47 IPC_STRUCT_TRAITS_MEMBER(autocomplete_attribute)
48 IPC_STRUCT_TRAITS_MEMBER(placeholder)
48 IPC_STRUCT_TRAITS_MEMBER(role) 49 IPC_STRUCT_TRAITS_MEMBER(role)
49 IPC_STRUCT_TRAITS_MEMBER(max_length) 50 IPC_STRUCT_TRAITS_MEMBER(max_length)
50 IPC_STRUCT_TRAITS_MEMBER(is_autofilled) 51 IPC_STRUCT_TRAITS_MEMBER(is_autofilled)
51 IPC_STRUCT_TRAITS_MEMBER(is_checked) 52 IPC_STRUCT_TRAITS_MEMBER(is_checked)
52 IPC_STRUCT_TRAITS_MEMBER(is_checkable) 53 IPC_STRUCT_TRAITS_MEMBER(is_checkable)
53 IPC_STRUCT_TRAITS_MEMBER(is_focusable) 54 IPC_STRUCT_TRAITS_MEMBER(is_focusable)
54 IPC_STRUCT_TRAITS_MEMBER(should_autocomplete) 55 IPC_STRUCT_TRAITS_MEMBER(should_autocomplete)
55 IPC_STRUCT_TRAITS_MEMBER(text_direction) 56 IPC_STRUCT_TRAITS_MEMBER(text_direction)
56 IPC_STRUCT_TRAITS_MEMBER(option_values) 57 IPC_STRUCT_TRAITS_MEMBER(option_values)
57 IPC_STRUCT_TRAITS_MEMBER(option_contents) 58 IPC_STRUCT_TRAITS_MEMBER(option_contents)
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after
357 // Inform browser of data list values for the curent field. 358 // Inform browser of data list values for the curent field.
358 IPC_MESSAGE_ROUTED2(AutofillHostMsg_SetDataList, 359 IPC_MESSAGE_ROUTED2(AutofillHostMsg_SetDataList,
359 std::vector<base::string16> /* values */, 360 std::vector<base::string16> /* values */,
360 std::vector<base::string16> /* labels */) 361 std::vector<base::string16> /* labels */)
361 362
362 // Inform the browser which password form is currently focused, as a response 363 // Inform the browser which password form is currently focused, as a response
363 // to the |AutofillMsg_FindFocusedPasswordForm| request. If no password form 364 // to the |AutofillMsg_FindFocusedPasswordForm| request. If no password form
364 // is focused, the response will contain an empty |autofill::PasswordForm|. 365 // is focused, the response will contain an empty |autofill::PasswordForm|.
365 IPC_MESSAGE_ROUTED1(AutofillHostMsg_FocusedPasswordFormFound, 366 IPC_MESSAGE_ROUTED1(AutofillHostMsg_FocusedPasswordFormFound,
366 autofill::PasswordForm) 367 autofill::PasswordForm)
OLDNEW
« no previous file with comments | « chrome/renderer/autofill/form_autofill_browsertest.cc ('k') | components/autofill/content/renderer/form_autofill_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698