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

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

Issue 2378503002: Observe visibility of password inputs, for HTTP-bad phase 1 (Closed)
Patch Set: fix components_unittests build failure Created 4 years, 2 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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 PresaveGeneratedPassword(PasswordForm password_form); 102 PresaveGeneratedPassword(PasswordForm password_form);
103 103
104 // Instructs the browser that form no longer contains a generated password and 104 // Instructs the browser that form no longer contains a generated password and
105 // the presaved form should be removed. 105 // the presaved form should be removed.
106 PasswordNoLongerGenerated(PasswordForm password_form); 106 PasswordNoLongerGenerated(PasswordForm password_form);
107 107
108 // Sends the outcome of HTML parsing based form classifier that detects the 108 // Sends the outcome of HTML parsing based form classifier that detects the
109 // forms where password generation should be available. 109 // forms where password generation should be available.
110 SaveGenerationFieldDetectedByClassifier( 110 SaveGenerationFieldDetectedByClassifier(
111 PasswordForm password_form, mojo.common.mojom.String16 generation_field); 111 PasswordForm password_form, mojo.common.mojom.String16 generation_field);
112
113 // Notification that a password field in the frame is visible.
114 PasswordFieldVisible();
112 }; 115 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698