1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23

content / public / test / ipc_interfaces_dumper.h [blame]

// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef CONTENT_PUBLIC_TEST_IPC_INTERFACES_DUMPER_H_
#define CONTENT_PUBLIC_TEST_IPC_INTERFACES_DUMPER_H_

#include <string>
#include <vector>

#include "content/public/browser/render_frame_host.h"
#include "content/public/browser/render_process_host.h"

namespace content {
void GetBoundInterfacesForTesting(RenderFrameHost* rfh,
                                  std::vector<std::string>& out);
void GetBoundAssociatedInterfacesForTesting(RenderFrameHost* rfh,
                                            std::vector<std::string>& out);
void GetBoundInterfacesForTesting(RenderProcessHost* rfh,
                                  std::vector<std::string>& out);
}  // namespace content

#endif  // CONTENT_PUBLIC_TEST_IPC_INTERFACES_DUMPER_H_