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

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

Issue 11415240: Fix clang build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "chrome/common/common_param_traits_macros.h" 10 #include "chrome/common/common_param_traits_macros.h"
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 136
137 // Sent when requestAutocomplete() succeeds. Tells the renderer to Autofill the 137 // Sent when requestAutocomplete() succeeds. Tells the renderer to Autofill the
138 // form that requested autocomplete with the |form_data| values input by the 138 // form that requested autocomplete with the |form_data| values input by the
139 // user. 139 // user.
140 IPC_MESSAGE_ROUTED1(AutofillMsg_RequestAutocompleteSuccess, 140 IPC_MESSAGE_ROUTED1(AutofillMsg_RequestAutocompleteSuccess,
141 FormData /* form_data */) 141 FormData /* form_data */)
142 142
143 // Sent when requestAutocomplete() fails. Currently, this happens when a form is 143 // Sent when requestAutocomplete() fails. Currently, this happens when a form is
144 // requested to be autocompleted with no input or select tags with autocomplete 144 // requested to be autocompleted with no input or select tags with autocomplete
145 // attributes. 145 // attributes.
146 IPC_MESSAGE_ROUTED0(AutofillMsg_RequestAutocompleteError); 146 IPC_MESSAGE_ROUTED0(AutofillMsg_RequestAutocompleteError)
147 147
148 // Autofill messages sent from the renderer to the browser. 148 // Autofill messages sent from the renderer to the browser.
149 149
150 // Notification that forms have been seen that are candidates for 150 // Notification that forms have been seen that are candidates for
151 // filling/submitting by the AutofillManager. 151 // filling/submitting by the AutofillManager.
152 IPC_MESSAGE_ROUTED2(AutofillHostMsg_FormsSeen, 152 IPC_MESSAGE_ROUTED2(AutofillHostMsg_FormsSeen,
153 std::vector<FormData> /* forms */, 153 std::vector<FormData> /* forms */,
154 base::TimeTicks /* timestamp */) 154 base::TimeTicks /* timestamp */)
155 155
156 // Notification that password forms have been seen that are candidates for 156 // Notification that password forms have been seen that are candidates for
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
239 FormFieldData /* the form field */, 239 FormFieldData /* the form field */,
240 gfx::Rect /* input field bounds, window-relative */, 240 gfx::Rect /* input field bounds, window-relative */,
241 std::vector<string16> /* suggestions */) 241 std::vector<string16> /* suggestions */)
242 242
243 // Inform browser of data list values for the curent field. 243 // Inform browser of data list values for the curent field.
244 IPC_MESSAGE_ROUTED4(AutofillHostMsg_SetDataList, 244 IPC_MESSAGE_ROUTED4(AutofillHostMsg_SetDataList,
245 std::vector<string16> /* values */, 245 std::vector<string16> /* values */,
246 std::vector<string16> /* labels */, 246 std::vector<string16> /* labels */,
247 std::vector<string16> /* icons */, 247 std::vector<string16> /* icons */,
248 std::vector<int> /* unique ids */) 248 std::vector<int> /* unique ids */)
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698