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 to start (|active| == true) or stop (|active| == false) logging |
| 117 // the decisions made about saving the password. |
| 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 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
268 IPC_MESSAGE_ROUTED4(AutofillHostMsg_ShowPasswordSuggestions, | 272 IPC_MESSAGE_ROUTED4(AutofillHostMsg_ShowPasswordSuggestions, |
269 autofill::FormFieldData /* the form field */, | 273 autofill::FormFieldData /* the form field */, |
270 gfx::RectF /* input field bounds, window-relative */, | 274 gfx::RectF /* input field bounds, window-relative */, |
271 std::vector<base::string16> /* suggestions */, | 275 std::vector<base::string16> /* suggestions */, |
272 std::vector<base::string16> /* realms */) | 276 std::vector<base::string16> /* realms */) |
273 | 277 |
274 // Inform browser of data list values for the curent field. | 278 // Inform browser of data list values for the curent field. |
275 IPC_MESSAGE_ROUTED2(AutofillHostMsg_SetDataList, | 279 IPC_MESSAGE_ROUTED2(AutofillHostMsg_SetDataList, |
276 std::vector<base::string16> /* values */, | 280 std::vector<base::string16> /* values */, |
277 std::vector<base::string16> /* labels */) | 281 std::vector<base::string16> /* labels */) |
OLD | NEW |