blob: 39a61cc7f3d53a8cd876f4a9d042cfed2053e912 [file] [log] [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_