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

Side by Side Diff: components/autofill/content/public/interfaces/autofill_driver.mojom

Issue 2180093002: [Autofill] Switch on use_new_wrapper_types mode. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address nit Created 4 years, 4 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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 module autofill.mojom; 5 module autofill.mojom;
6 6
7 import "components/autofill/content/public/interfaces/autofill_types.mojom"; 7 import "components/autofill/content/public/interfaces/autofill_types.mojom";
8 import "mojo/common/common_custom_types.mojom"; 8 import "mojo/common/common_custom_types.mojom";
9 import "ui/gfx/geometry/mojo/geometry.mojom"; 9 import "ui/gfx/geometry/mojo/geometry.mojom";
10 10
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 // Sent when a form is filled with Autofill suggestions. 48 // Sent when a form is filled with Autofill suggestions.
49 DidFillAutofillFormData(FormData form, mojo.common.mojom.TimeTicks timestamp); 49 DidFillAutofillFormData(FormData form, mojo.common.mojom.TimeTicks timestamp);
50 50
51 // Sent when a form is previewed with Autofill suggestions. 51 // Sent when a form is previewed with Autofill suggestions.
52 DidPreviewAutofillFormData(); 52 DidPreviewAutofillFormData();
53 53
54 // Sent when a text field is done editing. 54 // Sent when a text field is done editing.
55 DidEndTextFieldEditing(); 55 DidEndTextFieldEditing();
56 56
57 // Informs browser of data list values for the current field. 57 // Informs browser of data list values for the current field.
58 SetDataList(array<string> values, array<string> labels); 58 SetDataList(array<mojo.common.mojom.String16> values,
59 array<mojo.common.mojom.String16> labels);
59 }; 60 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698