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 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 IPC . | |
|
tibell
2017/01/20 01:55:18
<80 chars
You can try to run "git cl format" and
Jia
2017/01/20 02:54:33
Done. It indeed doesn't work on mojoms yet, but I'
| |
| 12 LayoutDumpRequest(); | |
| 13 | |
| 14 // Replicates test config (for an already started test) to a new renderer | |
| 15 // that hosts parts of the main test window. | |
| 16 ReplicateTestConfiguration(ShellTestConfig config); | |
| 17 | |
| 18 // Sets the test config for a layout test that is being started. This message | |
| 19 // is sent only to a renderer that hosts parts of the main test window. | |
| 20 SetTestConfiguration(ShellTestConfig config); | |
| 21 | |
| 22 // Sets up a secondary renderer (renderer that doesn't [yet] host parts of the | |
| 23 // main test window) for a layout test. | |
| 24 SetupSecondaryRenderer(); | |
| 25 }; | |
| OLD | NEW |