Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 module chrome.mojom; | |
| 6 | |
| 7 // Renderers of possibly insecure mixed-content. | |
| 8 interface InsecureContentRenderer { | |
| 9 // Sent to allow or forbid the running of insecure mixed-content. It may also | |
| 10 // reload the frame afterwards. | |
| 11 SetAllowRunningInsecureContent(bool allow, bool reload_frame); | |
|
Sam McNally
2017/02/03 17:36:58
These parameters seem unnecessary; the renderer ca
nigeltao1
2017/02/04 06:29:10
Done.
| |
| 12 }; | |
| OLD | NEW |