OLD | NEW |
---|---|
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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
106 IPC_MESSAGE_ROUTED2(AutofillMsg_PreviewForm, | 106 IPC_MESSAGE_ROUTED2(AutofillMsg_PreviewForm, |
107 int /* query_id */, | 107 int /* query_id */, |
108 autofill::FormData /* form */) | 108 autofill::FormData /* form */) |
109 | 109 |
110 // Fill a password form and prepare field autocomplete for multiple | 110 // Fill a password form and prepare field autocomplete for multiple |
111 // matching logins. Lets the renderer know if it should disable the popup | 111 // matching logins. Lets the renderer know if it should disable the popup |
112 // because the browser process will own the popup UI. | 112 // because the browser process will own the popup UI. |
113 IPC_MESSAGE_ROUTED1(AutofillMsg_FillPasswordForm, | 113 IPC_MESSAGE_ROUTED1(AutofillMsg_FillPasswordForm, |
114 autofill::PasswordFormFillData /* the fill form data*/) | 114 autofill::PasswordFormFillData /* the fill form data*/) |
115 | 115 |
116 // Notification that decisions about saving the password should start (|active| | |
Tom Sepez
2014/04/24 17:20:10
nit: Notification to start (...) or stop (...) log
vabr (Chromium)
2014/04/25 09:38:47
Done.
| |
117 // == true) or stop (|active| == false) being logged. | |
118 IPC_MESSAGE_ROUTED1(AutofillMsg_ChangeLoggingState, bool /* active */) | |
119 | |
116 // Send the heuristic and server field type predictions to the renderer. | 120 // Send the heuristic and server field type predictions to the renderer. |
117 IPC_MESSAGE_ROUTED1( | 121 IPC_MESSAGE_ROUTED1( |
118 AutofillMsg_FieldTypePredictionsAvailable, | 122 AutofillMsg_FieldTypePredictionsAvailable, |
119 std::vector<autofill::FormDataPredictions> /* forms */) | 123 std::vector<autofill::FormDataPredictions> /* forms */) |
120 | 124 |
121 // Clears the currently displayed Autofill results. | 125 // Clears the currently displayed Autofill results. |
122 IPC_MESSAGE_ROUTED0(AutofillMsg_ClearForm) | 126 IPC_MESSAGE_ROUTED0(AutofillMsg_ClearForm) |
123 | 127 |
124 // Tells the renderer that the Autofill previewed form should be cleared. | 128 // Tells the renderer that the Autofill previewed form should be cleared. |
125 IPC_MESSAGE_ROUTED0(AutofillMsg_ClearPreviewedForm) | 129 IPC_MESSAGE_ROUTED0(AutofillMsg_ClearPreviewedForm) |
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
266 IPC_MESSAGE_ROUTED4(AutofillHostMsg_ShowPasswordSuggestions, | 270 IPC_MESSAGE_ROUTED4(AutofillHostMsg_ShowPasswordSuggestions, |
267 autofill::FormFieldData /* the form field */, | 271 autofill::FormFieldData /* the form field */, |
268 gfx::RectF /* input field bounds, window-relative */, | 272 gfx::RectF /* input field bounds, window-relative */, |
269 std::vector<base::string16> /* suggestions */, | 273 std::vector<base::string16> /* suggestions */, |
270 std::vector<base::string16> /* realms */) | 274 std::vector<base::string16> /* realms */) |
271 | 275 |
272 // Inform browser of data list values for the curent field. | 276 // Inform browser of data list values for the curent field. |
273 IPC_MESSAGE_ROUTED2(AutofillHostMsg_SetDataList, | 277 IPC_MESSAGE_ROUTED2(AutofillHostMsg_SetDataList, |
274 std::vector<base::string16> /* values */, | 278 std::vector<base::string16> /* values */, |
275 std::vector<base::string16> /* labels */) | 279 std::vector<base::string16> /* labels */) |
OLD | NEW |