summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/public/platform/modules/insecure_input/insecure_input_service.mojom
blob: 424b8f40d4fc9849e973f718db81dd035bdb67d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

module blink.mojom;

// InsecureInputService receives per-frame notifications about insecure input
// operations (display of password fields, editing of any fields) on the page.
interface InsecureInputService {
  PasswordFieldVisibleInInsecureContext();
  AllPasswordFieldsInInsecureContextInvisible();
  DidEditFieldInInsecureContext();
};