| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef WebRemoteFrame_h | 5 #ifndef WebRemoteFrame_h |
| 6 #define WebRemoteFrame_h | 6 #define WebRemoteFrame_h |
| 7 | 7 |
| 8 #include "public/web/WebFrame.h" | 8 #include "public/web/WebFrame.h" |
| 9 #include "public/web/WebSandboxFlags.h" | 9 #include "public/web/WebSandboxFlags.h" |
| 10 | 10 |
| 11 namespace blink { | 11 namespace blink { |
| 12 | 12 |
| 13 enum class WebTreeScopeType; | 13 enum class WebTreeScopeType; |
| 14 class WebFrameClient; | 14 class WebFrameClient; |
| 15 class WebRemoteFrameClient; | 15 class WebRemoteFrameClient; |
| 16 | 16 |
| 17 class WebRemoteFrame : public WebFrame { | 17 class WebRemoteFrame : public WebFrame { |
| 18 public: | 18 public: |
| 19 BLINK_EXPORT static WebRemoteFrame* create(WebTreeScopeType, WebRemoteFrameC
lient*); | 19 BLINK_EXPORT static WebRemoteFrame* create(WebTreeScopeType, WebRemoteFrameC
lient*); |
| 20 | 20 |
| 21 // Functions for the embedder replicate the frame tree between processes. | 21 // Functions for the embedder replicate the frame tree between processes. |
| 22 // TODO(dcheng): The embedder currently does not replicate local frames in | 22 // TODO(dcheng): The embedder currently does not replicate local frames in |
| 23 // insertion order, so the local child version takes a previous sibling to | 23 // insertion order, so the local child version takes a previous sibling to |
| 24 // ensure that it is inserted into the correct location in the list of | 24 // ensure that it is inserted into the correct location in the list of |
| 25 // children. | 25 // children. |
| 26 virtual WebLocalFrame* createLocalChild(WebTreeScopeType, const WebString& n
ame, WebSandboxFlags, WebFrameClient*, WebFrame* previousSibling) = 0; | 26 virtual WebLocalFrame* createLocalChild(WebTreeScopeType, const WebString& n
ame, WebSandboxFlags, WebFrameClient*, WebFrame* previousSibling, const WebFrame
OwnerProperties&) = 0; |
| 27 | 27 |
| 28 virtual WebRemoteFrame* createRemoteChild(WebTreeScopeType, const WebString&
name, WebSandboxFlags, WebRemoteFrameClient*) = 0; | 28 virtual WebRemoteFrame* createRemoteChild(WebTreeScopeType, const WebString&
name, WebSandboxFlags, WebRemoteFrameClient*) = 0; |
| 29 | 29 |
| 30 // Transfer initial drawing parameters from a local frame. | 30 // Transfer initial drawing parameters from a local frame. |
| 31 virtual void initializeFromFrame(WebLocalFrame*) const = 0; | 31 virtual void initializeFromFrame(WebLocalFrame*) const = 0; |
| 32 | 32 |
| 33 // Set security origin replicated from another process. | 33 // Set security origin replicated from another process. |
| 34 virtual void setReplicatedOrigin(const WebSecurityOrigin&) const = 0; | 34 virtual void setReplicatedOrigin(const WebSecurityOrigin&) const = 0; |
| 35 | 35 |
| 36 // Set sandbox flags replicated from another process. | 36 // Set sandbox flags replicated from another process. |
| (...skipping 12 matching lines...) Expand all Loading... |
| 49 // migrated over to the new OOPI infrastructure. | 49 // migrated over to the new OOPI infrastructure. |
| 50 virtual v8::Local<v8::Context> deprecatedMainWorldScriptContext() const = 0; | 50 virtual v8::Local<v8::Context> deprecatedMainWorldScriptContext() const = 0; |
| 51 | 51 |
| 52 protected: | 52 protected: |
| 53 explicit WebRemoteFrame(WebTreeScopeType scope) : WebFrame(scope) { } | 53 explicit WebRemoteFrame(WebTreeScopeType scope) : WebFrame(scope) { } |
| 54 }; | 54 }; |
| 55 | 55 |
| 56 } // namespace blink | 56 } // namespace blink |
| 57 | 57 |
| 58 #endif // WebRemoteFrame_h | 58 #endif // WebRemoteFrame_h |
| OLD | NEW |