#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);
}
#endif