#ifndef COMPONENTS_UI_DEVTOOLS_UI_DEVTOOLS_UNITTEST_UTILS_H_
#define COMPONENTS_UI_DEVTOOLS_UI_DEVTOOLS_UNITTEST_UTILS_H_
#include "components/ui_devtools/protocol.h"
#include "components/ui_devtools/ui_element.h"
#include "components/ui_devtools/ui_element_delegate.h"
#include "testing/gmock/include/gmock/gmock.h"
namespace ui_devtools {
class FakeFrontendChannel : public protocol::FrontendChannel { … };
class MockUIElementDelegate : public UIElementDelegate { … };
class FakeUIElement : public UIElement { … };
}
#endif