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

Side by Side Diff: Source/web/RemoteFrameClient.cpp

Issue 573353002: Plumbing toward transitioning remote frame back to a local frame. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "config.h"
6 #include "web/RemoteFrameClient.h"
7
8 #include "platform/weborigin/SecurityOrigin.h"
9 #include "web/WebLocalFrameImpl.h"
10 #include "web/WebRemoteFrameImpl.h"
11
12 namespace blink {
13
14 RemoteFrameClient::RemoteFrameClient(WebRemoteFrameImpl* webFrame)
15 : m_webFrame(webFrame)
16 {
17 }
18
19 Frame* RemoteFrameClient::opener() const
20 {
21 return toCoreFrame(m_webFrame->opener());
22 }
23
24 void RemoteFrameClient::setOpener(Frame*)
25 {
26 // FIXME: Implement.
27 }
28
29 Frame* RemoteFrameClient::parent() const
30 {
31 return toCoreFrame(m_webFrame->parent());
32 }
33
34 Frame* RemoteFrameClient::top() const
35 {
36 return toCoreFrame(m_webFrame->top());
37 }
38
39 Frame* RemoteFrameClient::previousSibling() const
40 {
41 return toCoreFrame(m_webFrame->previousSibling());
42 }
43
44 Frame* RemoteFrameClient::nextSibling() const
45 {
46 return toCoreFrame(m_webFrame->nextSibling());
47 }
48
49 Frame* RemoteFrameClient::firstChild() const
50 {
51 return toCoreFrame(m_webFrame->firstChild());
52 }
53
54 Frame* RemoteFrameClient::lastChild() const
55 {
56 return toCoreFrame(m_webFrame->lastChild());
57 }
58
59 bool RemoteFrameClient::willCheckAndDispatchMessageEvent(
60 SecurityOrigin* target, MessageEvent* event, LocalFrame* sourceFrame) const
61 {
62 if (m_webFrame->client())
63 m_webFrame->client()->postMessageEvent(WebLocalFrameImpl::fromFrame(sour ceFrame), m_webFrame, WebSecurityOrigin(target), WebDOMMessageEvent(event));
64 return true;
65 }
66
67 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698