#ifndef CHROME_BROWSER_DEVTOOLS_PROTOCOL_DEVTOOLS_PROTOCOL_TEST_SUPPORT_H_
#define CHROME_BROWSER_DEVTOOLS_PROTOCOL_DEVTOOLS_PROTOCOL_TEST_SUPPORT_H_
#include "chrome/test/base/platform_browser_test.h"
#include "content/public/test/test_devtools_protocol_client.h"
class DevToolsProtocolTestBase : public PlatformBrowserTest,
public content::TestDevToolsProtocolClient {
public:
DevToolsProtocolTestBase();
~DevToolsProtocolTestBase() override;
protected:
void Attach();
void TearDownOnMainThread() override;
virtual content::WebContents* web_contents();
};
#endif