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

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

Issue 1059393002: Remove --respect-autocomplete-off-autofill flag. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix last 3 tests Created 5 years, 8 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 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 257 matching lines...) Expand 10 before | Expand all | Expand 10 after
268 IPC_MESSAGE_ROUTED1(AutofillHostMsg_FormSubmitted, 268 IPC_MESSAGE_ROUTED1(AutofillHostMsg_FormSubmitted,
269 autofill::FormData /* form */) 269 autofill::FormData /* form */)
270 270
271 // Notification that a form field's value has changed. 271 // Notification that a form field's value has changed.
272 IPC_MESSAGE_ROUTED3(AutofillHostMsg_TextFieldDidChange, 272 IPC_MESSAGE_ROUTED3(AutofillHostMsg_TextFieldDidChange,
273 autofill::FormData /* the form */, 273 autofill::FormData /* the form */,
274 autofill::FormFieldData /* the form field */, 274 autofill::FormFieldData /* the form field */,
275 base::TimeTicks /* timestamp */) 275 base::TimeTicks /* timestamp */)
276 276
277 // Queries the browser for Autofill suggestions for a form input field. 277 // Queries the browser for Autofill suggestions for a form input field.
278 IPC_MESSAGE_ROUTED5(AutofillHostMsg_QueryFormFieldAutofill, 278 IPC_MESSAGE_ROUTED4(AutofillHostMsg_QueryFormFieldAutofill,
279 int /* id of this message */, 279 int /* id of this message */,
280 autofill::FormData /* the form */, 280 autofill::FormData /* the form */,
281 autofill::FormFieldData /* the form field */, 281 autofill::FormFieldData /* the form field */,
282 gfx::RectF /* input field bounds, window-relative */, 282 gfx::RectF /* input field bounds, window-relative */)
283 bool /* display warning if autofill disabled */)
284 283
285 // Sent when a form is previewed with Autofill suggestions. 284 // Sent when a form is previewed with Autofill suggestions.
286 IPC_MESSAGE_ROUTED0(AutofillHostMsg_DidPreviewAutofillFormData) 285 IPC_MESSAGE_ROUTED0(AutofillHostMsg_DidPreviewAutofillFormData)
287 286
288 // Sent immediately after the renderer receives a ping IPC. 287 // Sent immediately after the renderer receives a ping IPC.
289 IPC_MESSAGE_ROUTED0(AutofillHostMsg_PingAck) 288 IPC_MESSAGE_ROUTED0(AutofillHostMsg_PingAck)
290 289
291 // Sent when a form is filled with Autofill suggestions. 290 // Sent when a form is filled with Autofill suggestions.
292 IPC_MESSAGE_ROUTED1(AutofillHostMsg_DidFillAutofillFormData, 291 IPC_MESSAGE_ROUTED1(AutofillHostMsg_DidFillAutofillFormData,
293 base::TimeTicks /* timestamp */) 292 base::TimeTicks /* timestamp */)
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
328 int /* key */, 327 int /* key */,
329 base::i18n::TextDirection /* text_direction */, 328 base::i18n::TextDirection /* text_direction */,
330 base::string16 /* username typed by user */, 329 base::string16 /* username typed by user */,
331 int /* options bitmask of autofill::ShowPasswordSuggestionsOptions */, 330 int /* options bitmask of autofill::ShowPasswordSuggestionsOptions */,
332 gfx::RectF /* input field bounds, window-relative */) 331 gfx::RectF /* input field bounds, window-relative */)
333 332
334 // Inform browser of data list values for the curent field. 333 // Inform browser of data list values for the curent field.
335 IPC_MESSAGE_ROUTED2(AutofillHostMsg_SetDataList, 334 IPC_MESSAGE_ROUTED2(AutofillHostMsg_SetDataList,
336 std::vector<base::string16> /* values */, 335 std::vector<base::string16> /* values */,
337 std::vector<base::string16> /* labels */) 336 std::vector<base::string16> /* labels */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698