| 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 content.mojom; |
| 6 |
| 7 [Native] |
| 8 struct ShellTestConfig; |
| 9 |
| 10 interface LayoutTestControl { |
| 11 // Asks a frame to dump its contents into a string and send them back over |
| 12 // IPC. |
| 13 LayoutDumpRequest(); |
| 14 |
| 15 // Replicates test config (for an already started test) to a new renderer |
| 16 // that hosts parts of the main test window. |
| 17 ReplicateTestConfiguration(ShellTestConfig config); |
| 18 |
| 19 // Sets the test config for a layout test that is being started. This message |
| 20 // is sent only to a renderer that hosts parts of the main test window. |
| 21 SetTestConfiguration(ShellTestConfig config); |
| 22 |
| 23 // Sets up a secondary renderer (renderer that doesn't [yet] host parts of the |
| 24 // main test window) for a layout test. |
| 25 SetupSecondaryRenderer(); |
| 26 }; |
| OLD | NEW |