| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2009 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * This library is free software; you can redistribute it and/or | 4 * This library is free software; you can redistribute it and/or |
| 5 * modify it under the terms of the GNU Library General Public | 5 * modify it under the terms of the GNU Library General Public |
| 6 * License as published by the Free Software Foundation; either | 6 * License as published by the Free Software Foundation; either |
| 7 * version 2 of the License, or (at your option) any later version. | 7 * version 2 of the License, or (at your option) any later version. |
| 8 * | 8 * |
| 9 * This library is distributed in the hope that it will be useful, | 9 * This library is distributed in the hope that it will be useful, |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 | 73 |
| 74 private: | 74 private: |
| 75 void performDeferredWidgetTreeOperations(); | 75 void performDeferredWidgetTreeOperations(); |
| 76 }; | 76 }; |
| 77 | 77 |
| 78 // FrameOwner overrides: | 78 // FrameOwner overrides: |
| 79 void setContentFrame(Frame&) override; | 79 void setContentFrame(Frame&) override; |
| 80 void clearContentFrame() override; | 80 void clearContentFrame() override; |
| 81 void dispatchLoad() override; | 81 void dispatchLoad() override; |
| 82 SandboxFlags getSandboxFlags() const override { return m_sandboxFlags; } | 82 SandboxFlags getSandboxFlags() const override { return m_sandboxFlags; } |
| 83 bool canRenderFallbackContent() const override { return false; } |
| 83 void renderFallbackContent() override {} | 84 void renderFallbackContent() override {} |
| 84 ScrollbarMode scrollingMode() const override { return ScrollbarAuto; } | 85 ScrollbarMode scrollingMode() const override { return ScrollbarAuto; } |
| 85 int marginWidth() const override { return -1; } | 86 int marginWidth() const override { return -1; } |
| 86 int marginHeight() const override { return -1; } | 87 int marginHeight() const override { return -1; } |
| 87 bool allowFullscreen() const override { return false; } | 88 bool allowFullscreen() const override { return false; } |
| 88 AtomicString csp() const override { return nullAtom; } | 89 AtomicString csp() const override { return nullAtom; } |
| 89 const WebVector<WebPermissionType>& delegatedPermissions() const override; | 90 const WebVector<WebPermissionType>& delegatedPermissions() const override; |
| 90 | 91 |
| 91 DECLARE_VIRTUAL_TRACE(); | 92 DECLARE_VIRTUAL_TRACE(); |
| 92 | 93 |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 | 156 |
| 156 DEFINE_TYPE_CASTS(HTMLFrameOwnerElement, | 157 DEFINE_TYPE_CASTS(HTMLFrameOwnerElement, |
| 157 FrameOwner, | 158 FrameOwner, |
| 158 owner, | 159 owner, |
| 159 owner->isLocal(), | 160 owner->isLocal(), |
| 160 owner.isLocal()); | 161 owner.isLocal()); |
| 161 | 162 |
| 162 } // namespace blink | 163 } // namespace blink |
| 163 | 164 |
| 164 #endif // HTMLFrameOwnerElement_h | 165 #endif // HTMLFrameOwnerElement_h |
| OLD | NEW |