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

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

Issue 12721004: Autofill:Autocomplete: Enable autocheckout of input elements of type password. This will support fi… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 8
9 #include "base/time.h" 9 #include "base/time.h"
10 #include "components/autofill/common/autocheckout_status.h" 10 #include "components/autofill/common/autocheckout_status.h"
(...skipping 26 matching lines...) Expand all
37 IPC_STRUCT_TRAITS_BEGIN(FormFieldData) 37 IPC_STRUCT_TRAITS_BEGIN(FormFieldData)
38 IPC_STRUCT_TRAITS_MEMBER(label) 38 IPC_STRUCT_TRAITS_MEMBER(label)
39 IPC_STRUCT_TRAITS_MEMBER(name) 39 IPC_STRUCT_TRAITS_MEMBER(name)
40 IPC_STRUCT_TRAITS_MEMBER(value) 40 IPC_STRUCT_TRAITS_MEMBER(value)
41 IPC_STRUCT_TRAITS_MEMBER(form_control_type) 41 IPC_STRUCT_TRAITS_MEMBER(form_control_type)
42 IPC_STRUCT_TRAITS_MEMBER(autocomplete_attribute) 42 IPC_STRUCT_TRAITS_MEMBER(autocomplete_attribute)
43 IPC_STRUCT_TRAITS_MEMBER(max_length) 43 IPC_STRUCT_TRAITS_MEMBER(max_length)
44 IPC_STRUCT_TRAITS_MEMBER(is_autofilled) 44 IPC_STRUCT_TRAITS_MEMBER(is_autofilled)
45 IPC_STRUCT_TRAITS_MEMBER(is_checked) 45 IPC_STRUCT_TRAITS_MEMBER(is_checked)
46 IPC_STRUCT_TRAITS_MEMBER(is_checkable) 46 IPC_STRUCT_TRAITS_MEMBER(is_checkable)
47 IPC_STRUCT_TRAITS_MEMBER(is_password_field)
Ilya Sherman 2013/03/15 23:42:35 Why is this needed, given that we already have for
Raman Kakilate 2013/03/18 17:54:00 My bad. Removed.
47 IPC_STRUCT_TRAITS_MEMBER(is_focusable) 48 IPC_STRUCT_TRAITS_MEMBER(is_focusable)
48 IPC_STRUCT_TRAITS_MEMBER(should_autocomplete) 49 IPC_STRUCT_TRAITS_MEMBER(should_autocomplete)
49 IPC_STRUCT_TRAITS_MEMBER(option_values) 50 IPC_STRUCT_TRAITS_MEMBER(option_values)
50 IPC_STRUCT_TRAITS_MEMBER(option_contents) 51 IPC_STRUCT_TRAITS_MEMBER(option_contents)
51 IPC_STRUCT_TRAITS_END() 52 IPC_STRUCT_TRAITS_END()
52 53
53 IPC_STRUCT_TRAITS_BEGIN(FormFieldDataPredictions) 54 IPC_STRUCT_TRAITS_BEGIN(FormFieldDataPredictions)
54 IPC_STRUCT_TRAITS_MEMBER(field) 55 IPC_STRUCT_TRAITS_MEMBER(field)
55 IPC_STRUCT_TRAITS_MEMBER(signature) 56 IPC_STRUCT_TRAITS_MEMBER(signature)
56 IPC_STRUCT_TRAITS_MEMBER(heuristic_type) 57 IPC_STRUCT_TRAITS_MEMBER(heuristic_type)
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
273 FormFieldData /* the form field */, 274 FormFieldData /* the form field */,
274 gfx::RectF /* input field bounds, window-relative */, 275 gfx::RectF /* input field bounds, window-relative */,
275 std::vector<string16> /* suggestions */) 276 std::vector<string16> /* suggestions */)
276 277
277 // Inform browser of data list values for the curent field. 278 // Inform browser of data list values for the curent field.
278 IPC_MESSAGE_ROUTED4(AutofillHostMsg_SetDataList, 279 IPC_MESSAGE_ROUTED4(AutofillHostMsg_SetDataList,
279 std::vector<string16> /* values */, 280 std::vector<string16> /* values */,
280 std::vector<string16> /* labels */, 281 std::vector<string16> /* labels */,
281 std::vector<string16> /* icons */, 282 std::vector<string16> /* icons */,
282 std::vector<int> /* unique ids */) 283 std::vector<int> /* unique ids */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698