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

Side by Side Diff: chrome/common/autofill_messages.h

Issue 9235072: Adding Mouse Support for new GTK Autofill (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: First Draft Created 8 years, 10 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 (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 "content/public/common/webkit_param_traits.h" 10 #include "content/public/common/webkit_param_traits.h"
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 88
89 // Send the heuristic and server field type predictions to the renderer. 89 // Send the heuristic and server field type predictions to the renderer.
90 IPC_MESSAGE_ROUTED1( 90 IPC_MESSAGE_ROUTED1(
91 AutofillMsg_FieldTypePredictionsAvailable, 91 AutofillMsg_FieldTypePredictionsAvailable,
92 std::vector<webkit::forms::FormDataPredictions> /* forms */) 92 std::vector<webkit::forms::FormDataPredictions> /* forms */)
93 93
94 // Select an Autofill item when using an external delegate. 94 // Select an Autofill item when using an external delegate.
95 IPC_MESSAGE_ROUTED1(AutofillMsg_SelectAutofillSuggestionAtIndex, 95 IPC_MESSAGE_ROUTED1(AutofillMsg_SelectAutofillSuggestionAtIndex,
96 int /* listIndex */) 96 int /* listIndex */)
97 97
98 // Tells the renderer that the next form will be filled as a preview.
99 IPC_MESSAGE_ROUTED0(AutofillMsg_SetAutofillActionFill);
100
101 // Tells the render that the next form will be filled for real.
Ilya Sherman 2012/02/04 04:10:52 nit: "render" -> "renderer"
csharp 2012/02/07 22:30:58 Done.
102 IPC_MESSAGE_ROUTED0(AutofillMsg_SetAutofillActionPreview);
103
104 // Tells the render that the autofill selection has been cleared.
Ilya Sherman 2012/02/04 04:10:52 nit: "autofill" -> "Autofill"
Ilya Sherman 2012/02/04 04:10:52 It's not clear to me from reading this comment why
csharp 2012/02/07 22:30:58 Done.
105 IPC_MESSAGE_ROUTED0(AutofillMsg_ClearAutofillSelection);
106
107 // Clears the currently displayed Autofill results.
108 IPC_MESSAGE_ROUTED0(AutofillMsg_ClearForm);
109
110 // Sets the currently selected nodes value.
111 IPC_MESSAGE_ROUTED1(AutofillMsg_SetNodeText,
112 string16);
113
98 // Autofill messages sent from the renderer to the browser. 114 // Autofill messages sent from the renderer to the browser.
99 115
100 // Notification that forms have been seen that are candidates for 116 // Notification that forms have been seen that are candidates for
101 // filling/submitting by the AutofillManager. 117 // filling/submitting by the AutofillManager.
102 IPC_MESSAGE_ROUTED2(AutofillHostMsg_FormsSeen, 118 IPC_MESSAGE_ROUTED2(AutofillHostMsg_FormsSeen,
103 std::vector<webkit::forms::FormData> /* forms */, 119 std::vector<webkit::forms::FormData> /* forms */,
104 base::TimeTicks /* timestamp */) 120 base::TimeTicks /* timestamp */)
105 121
106 // Notification that password forms have been seen that are candidates for 122 // Notification that password forms have been seen that are candidates for
107 // filling/submitting by the password manager. 123 // filling/submitting by the password manager.
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 string16 /* value */) 174 string16 /* value */)
159 175
160 // Instructs the browser to show the Autofill dialog. 176 // Instructs the browser to show the Autofill dialog.
161 IPC_MESSAGE_ROUTED0(AutofillHostMsg_ShowAutofillDialog) 177 IPC_MESSAGE_ROUTED0(AutofillHostMsg_ShowAutofillDialog)
162 178
163 // Send when a text field is done editing. 179 // Send when a text field is done editing.
164 IPC_MESSAGE_ROUTED0(AutofillHostMsg_DidEndTextFieldEditing) 180 IPC_MESSAGE_ROUTED0(AutofillHostMsg_DidEndTextFieldEditing)
165 181
166 // Instructs the browser to hide the Autofill popup. 182 // Instructs the browser to hide the Autofill popup.
167 IPC_MESSAGE_ROUTED0(AutofillHostMsg_HideAutofillPopup) 183 IPC_MESSAGE_ROUTED0(AutofillHostMsg_HideAutofillPopup)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698