blob: cd98bbed231f320712f7b0ff3bd634127f2bb530 [file] [log] [blame]
Avi Drissman4e1b7bc32022-09-15 14:03:501// Copyright 2022 The Chromium Authors
Thiabaud Engelbrecht89f0d3a2022-08-10 01:45:152// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5module content.mojom;
6
7// This interface is only for the sake of browser test to query the number of
8// main frames in a remote child process.
9interface MainFrameCounterTest {
10 // Returns whether or not the renderer this is called on has a local main
11 // frame.
12 HasMainFrame() => (bool has_main_frame);
13};