OLD | NEW |
(Empty) | |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be found |
| 3 // in the LICENSE file. |
| 4 |
| 5 #include "config.h" |
| 6 #include "web/RemoteBridgeFrameOwner.h" |
| 7 |
| 8 namespace blink { |
| 9 |
| 10 RemoteBridgeFrameOwner::RemoteBridgeFrameOwner(PassRefPtrWillBeRawPtr<WebLocalFr
ameImpl> frame, SandboxFlags flags) |
| 11 : m_frame(frame) |
| 12 , m_sandboxFlags(flags) |
| 13 { |
| 14 } |
| 15 |
| 16 void RemoteBridgeFrameOwner::trace(Visitor* visitor) |
| 17 { |
| 18 visitor->trace(m_frame); |
| 19 FrameOwner::trace(visitor); |
| 20 } |
| 21 |
| 22 void RemoteBridgeFrameOwner::dispatchLoad() |
| 23 { |
| 24 // FIXME: Implement. Most likely goes through m_frame->client(). |
| 25 } |
| 26 |
| 27 } // namespace blink |
OLD | NEW |