Chromium Code Reviews| Index: Source/web/RemoteFrameClientImpl.cpp |
| diff --git a/Source/web/RemoteFrameClientImpl.cpp b/Source/web/RemoteFrameClientImpl.cpp |
| index a5fb499fd462879bc703ca48544bdd00b97788d0..811c155098567176a1b5f2a0c0774ffa76e4d0b0 100644 |
| --- a/Source/web/RemoteFrameClientImpl.cpp |
| +++ b/Source/web/RemoteFrameClientImpl.cpp |
| @@ -55,9 +55,9 @@ Frame* RemoteFrameClientImpl::opener() const |
| return toCoreFrame(m_webFrame->opener()); |
| } |
| -void RemoteFrameClientImpl::setOpener(Frame*) |
| +void RemoteFrameClientImpl::setOpener(Frame* opener) |
| { |
| - // FIXME: Implement. |
| + m_webFrame->setOpener(WebFrame::fromFrame(opener)); |
|
nasko
2015/06/23 14:18:51
Is there a way to avoid duplicating this from Fram
dcheng
2015/06/23 18:20:43
It'd be tricky, since you'd have a diamond inherit
|
| } |
| Frame* RemoteFrameClientImpl::parent() const |