#ifndef CONTENT_BROWSER_DEVTOOLS_PROTOCOL_DEVTOOLS_PROTOCOL_TEST_SUPPORT_H_
#define CONTENT_BROWSER_DEVTOOLS_PROTOCOL_DEVTOOLS_PROTOCOL_TEST_SUPPORT_H_
#include <string>
#include <vector>
#include "content/public/browser/web_contents_delegate.h"
#include "content/public/test/content_browser_test.h"
#include "content/public/test/test_devtools_protocol_client.h"
namespace content {
class DevToolsProtocolTest : virtual public ContentBrowserTest,
public WebContentsDelegate,
public TestDevToolsProtocolClient { … };
}
#endif