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

Unified Diff: public/web/WebRemoteFrame.h

Issue 543913002: Hook up postMessages to WebRemoteFrameClient (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix webkit_unit_tests compile Created 6 years, 3 months 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
« no previous file with comments | « Source/web/tests/WebFrameTest.cpp ('k') | public/web/WebRemoteFrameClient.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/web/WebRemoteFrame.h
diff --git a/public/web/WebRemoteFrame.h b/public/web/WebRemoteFrame.h
index 9afc010d8219875146bebc4e16edd1d2d6312e44..8d756ce04a9bc052ae8eaa00d67044fae70c7213 100644
--- a/public/web/WebRemoteFrame.h
+++ b/public/web/WebRemoteFrame.h
@@ -8,13 +8,14 @@
#include "public/web/WebFrame.h"
namespace blink {
+class WebRemoteFrameClient;
class WebRemoteFrame : public WebFrame {
public:
- BLINK_EXPORT static WebRemoteFrame* create(WebFrameClient*);
+ BLINK_EXPORT static WebRemoteFrame* create(WebRemoteFrameClient*);
virtual WebLocalFrame* createLocalChild(const WebString& name, WebFrameClient*) = 0;
- virtual WebRemoteFrame* createRemoteChild(const WebString& name, WebFrameClient*) = 0;
+ virtual WebRemoteFrame* createRemoteChild(const WebString& name, WebRemoteFrameClient*) = 0;
};
} // namespace blink
« no previous file with comments | « Source/web/tests/WebFrameTest.cpp ('k') | public/web/WebRemoteFrameClient.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698