Index: components/autofill/content/public/interfaces/autofill_agent.mojom |
diff --git a/components/autofill/content/public/interfaces/autofill_agent.mojom b/components/autofill/content/public/interfaces/autofill_agent.mojom |
index 40c501dd0e0e23a019e0ae6bc34dc416b42d2d82..bf0c60036a9e540a2b11d7b6dea7de4cba1322b8 100644 |
--- a/components/autofill/content/public/interfaces/autofill_agent.mojom |
+++ b/components/autofill/content/public/interfaces/autofill_agent.mojom |
@@ -4,8 +4,14 @@ |
module autofill.mojom; |
+import "components/autofill/content/public/interfaces/autofill_types.mojom"; |
+ |
interface AutofillAgent { |
// Tells the render frame that a user gesture was observed |
// somewhere in the tab (including in a different frame). |
FirstUserGestureObservedInTab(); |
+ |
+ // Instructs the renderer to fill the active form with the given form data, |
+ // the response contains filled form and the timestamp. |
+ FillForm(int32 id, FormData form) => (FormData filled, int64 timestamp); |
yzshen1
2016/05/24 16:12:10
what is the exact meaning of the timestamp?
leonhsl(Using Gerrit)
2016/05/25 07:16:34
This is the timestamp when AutofillAgent received
|
}; |