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

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

Issue 2162933003: [Password Generation] Fixes bug in sending CSS classes to the server (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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
« no previous file with comments | « no previous file | components/autofill/core/browser/autofill_field.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 IPC_STRUCT_TRAITS_MEMBER(placeholder) 51 IPC_STRUCT_TRAITS_MEMBER(placeholder)
52 IPC_STRUCT_TRAITS_MEMBER(role) 52 IPC_STRUCT_TRAITS_MEMBER(role)
53 IPC_STRUCT_TRAITS_MEMBER(max_length) 53 IPC_STRUCT_TRAITS_MEMBER(max_length)
54 IPC_STRUCT_TRAITS_MEMBER(is_autofilled) 54 IPC_STRUCT_TRAITS_MEMBER(is_autofilled)
55 IPC_STRUCT_TRAITS_MEMBER(check_status) 55 IPC_STRUCT_TRAITS_MEMBER(check_status)
56 IPC_STRUCT_TRAITS_MEMBER(is_focusable) 56 IPC_STRUCT_TRAITS_MEMBER(is_focusable)
57 IPC_STRUCT_TRAITS_MEMBER(should_autocomplete) 57 IPC_STRUCT_TRAITS_MEMBER(should_autocomplete)
58 IPC_STRUCT_TRAITS_MEMBER(text_direction) 58 IPC_STRUCT_TRAITS_MEMBER(text_direction)
59 IPC_STRUCT_TRAITS_MEMBER(option_values) 59 IPC_STRUCT_TRAITS_MEMBER(option_values)
60 IPC_STRUCT_TRAITS_MEMBER(option_contents) 60 IPC_STRUCT_TRAITS_MEMBER(option_contents)
61 IPC_STRUCT_TRAITS_MEMBER(css_classes)
61 IPC_STRUCT_TRAITS_END() 62 IPC_STRUCT_TRAITS_END()
62 63
63 IPC_STRUCT_TRAITS_BEGIN(autofill::FormFieldDataPredictions) 64 IPC_STRUCT_TRAITS_BEGIN(autofill::FormFieldDataPredictions)
64 IPC_STRUCT_TRAITS_MEMBER(field) 65 IPC_STRUCT_TRAITS_MEMBER(field)
65 IPC_STRUCT_TRAITS_MEMBER(signature) 66 IPC_STRUCT_TRAITS_MEMBER(signature)
66 IPC_STRUCT_TRAITS_MEMBER(heuristic_type) 67 IPC_STRUCT_TRAITS_MEMBER(heuristic_type)
67 IPC_STRUCT_TRAITS_MEMBER(server_type) 68 IPC_STRUCT_TRAITS_MEMBER(server_type)
68 IPC_STRUCT_TRAITS_MEMBER(overall_type) 69 IPC_STRUCT_TRAITS_MEMBER(overall_type)
69 IPC_STRUCT_TRAITS_MEMBER(parseable_name) 70 IPC_STRUCT_TRAITS_MEMBER(parseable_name)
70 IPC_STRUCT_TRAITS_END() 71 IPC_STRUCT_TRAITS_END()
(...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after
356 // Inform browser of data list values for the curent field. 357 // Inform browser of data list values for the curent field.
357 IPC_MESSAGE_ROUTED2(AutofillHostMsg_SetDataList, 358 IPC_MESSAGE_ROUTED2(AutofillHostMsg_SetDataList,
358 std::vector<base::string16> /* values */, 359 std::vector<base::string16> /* values */,
359 std::vector<base::string16> /* labels */) 360 std::vector<base::string16> /* labels */)
360 361
361 // Inform the browser which password form is currently focused, as a response 362 // Inform the browser which password form is currently focused, as a response
362 // to the |AutofillMsg_FindFocusedPasswordForm| request. If no password form 363 // to the |AutofillMsg_FindFocusedPasswordForm| request. If no password form
363 // is focused, the response will contain an empty |autofill::PasswordForm|. 364 // is focused, the response will contain an empty |autofill::PasswordForm|.
364 IPC_MESSAGE_ROUTED1(AutofillHostMsg_FocusedPasswordFormFound, 365 IPC_MESSAGE_ROUTED1(AutofillHostMsg_FocusedPasswordFormFound,
365 autofill::PasswordForm) 366 autofill::PasswordForm)
OLDNEW
« no previous file with comments | « no previous file | components/autofill/core/browser/autofill_field.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698