Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(235)

Side by Side Diff: content/shell/common/layout_test.mojom

Issue 2594913002: Replace IPC messages in layout_test_render_frame_observer. (Closed)
Patch Set: Formatted files Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698