| 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
|
|
|