Chromium Code Reviews| OLD | NEW |
|---|---|
| 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"; | |
| 8 | |
| 7 interface AutofillAgent { | 9 interface AutofillAgent { |
| 8 // Tells the render frame that a user gesture was observed | 10 // Tells the render frame that a user gesture was observed |
| 9 // somewhere in the tab (including in a different frame). | 11 // somewhere in the tab (including in a different frame). |
| 10 FirstUserGestureObservedInTab(); | 12 FirstUserGestureObservedInTab(); |
| 13 | |
| 14 // Instructs the renderer to fill the active form with the given form data, | |
| 15 // the response contains filled form and the timestamp. | |
| 16 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
| |
| 11 }; | 17 }; |
| OLD | NEW |