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

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

Issue 2007473004: [Autofill] Migrate ContentAutofillDriver<-->AutofillAgent IPCs to mojo. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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";
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 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698