Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(51)

Unified Diff: third_party/WebKit/Source/web/tests/FrameTestHelpers.h

Issue 1467123003: Create base class for common functionality of Web{Local,Remote}Frame (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address comments Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 {
« no previous file with comments | « third_party/WebKit/Source/web/WebViewImpl.cpp ('k') | third_party/WebKit/Source/web/tests/FrameTestHelpers.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698