Index: third_party/WebKit/Source/web/tests/FrameTestHelpers.h |
diff --git a/third_party/WebKit/Source/web/tests/FrameTestHelpers.h b/third_party/WebKit/Source/web/tests/FrameTestHelpers.h |
index 8507f93fe81681d6f996d2852787ace96a49dc6a..dc110adcdf63b4103ff83d2d77371ecdda239054 100644 |
--- a/third_party/WebKit/Source/web/tests/FrameTestHelpers.h |
+++ b/third_party/WebKit/Source/web/tests/FrameTestHelpers.h |
@@ -47,6 +47,8 @@ |
namespace blink { |
+class WebRemoteFrameImpl; |
+ |
namespace FrameTestHelpers { |
class TestWebFrameClient; |
@@ -150,7 +152,7 @@ class TestWebRemoteFrameClient : public WebRemoteFrameClient { |
public: |
TestWebRemoteFrameClient(); |
- WebRemoteFrame* frame() const { return m_frame; } |
+ WebRemoteFrameImpl* frame() const { return m_frame; } |
// WebRemoteFrameClient overrides: |
void frameDetached(DetachType) override; |
@@ -161,7 +163,7 @@ public: |
WebDOMMessageEvent) override { } |
private: |
- WebRemoteFrame* const m_frame; |
+ WebRemoteFrameImpl* const m_frame; |
}; |
class TestWebViewClient : public WebViewClient { |