| Index: third_party/WebKit/public/platform/modules/sensitive_input_visibility/sensitive_input_visibility_service.mojom
|
| diff --git a/third_party/WebKit/Source/devtools/scripts/start_chrome_and_server.js b/third_party/WebKit/public/platform/modules/sensitive_input_visibility/sensitive_input_visibility_service.mojom
|
| similarity index 51%
|
| copy from third_party/WebKit/Source/devtools/scripts/start_chrome_and_server.js
|
| copy to third_party/WebKit/public/platform/modules/sensitive_input_visibility/sensitive_input_visibility_service.mojom
|
| index 9cbc0c24358ce58c91d9502a579931d65d1c1444..629e82e6f07a79413b8c8be3f12bd0bb846227ff 100644
|
| --- a/third_party/WebKit/Source/devtools/scripts/start_chrome_and_server.js
|
| +++ b/third_party/WebKit/public/platform/modules/sensitive_input_visibility/sensitive_input_visibility_service.mojom
|
| @@ -2,8 +2,9 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -var childProcess = require("child_process");
|
| -var path = require("path");
|
| +module blink.mojom;
|
|
|
| -childProcess.fork(path.join(__dirname, "chrome_debug_launcher/launch_chrome.js"));
|
| -childProcess.fork(path.join(__dirname, "hosted_mode/server.js"));
|
| +// SensitiveInputVisibilityService receives per-frame notifications about sensitive input fields (such as passwords) on the page.
|
| +interface SensitiveInputVisibilityService {
|
| + PasswordFieldVisibleInInsecureContext();
|
| +};
|
|
|