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 15 matching lines...) Expand all Loading... |
26 #include "core/html/HTMLElement.h" | 26 #include "core/html/HTMLElement.h" |
27 #include "platform/heap/Handle.h" | 27 #include "platform/heap/Handle.h" |
28 #include "platform/scroll/ScrollTypes.h" | 28 #include "platform/scroll/ScrollTypes.h" |
29 #include "wtf/HashCountedSet.h" | 29 #include "wtf/HashCountedSet.h" |
30 | 30 |
31 namespace blink { | 31 namespace blink { |
32 | 32 |
33 class LocalDOMWindow; | 33 class LocalDOMWindow; |
34 class ExceptionState; | 34 class ExceptionState; |
35 class Frame; | 35 class Frame; |
36 class RenderPart; | 36 class LayoutPart; |
37 class Widget; | 37 class Widget; |
38 | 38 |
39 class HTMLFrameOwnerElement : public HTMLElement, public FrameOwner { | 39 class HTMLFrameOwnerElement : public HTMLElement, public FrameOwner { |
40 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(HTMLFrameOwnerElement); | 40 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(HTMLFrameOwnerElement); |
41 public: | 41 public: |
42 virtual ~HTMLFrameOwnerElement(); | 42 virtual ~HTMLFrameOwnerElement(); |
43 | 43 |
44 Frame* contentFrame() const { return m_contentFrame; } | 44 Frame* contentFrame() const { return m_contentFrame; } |
45 DOMWindow* contentWindow() const; | 45 DOMWindow* contentWindow() const; |
46 Document* contentDocument() const; | 46 Document* contentDocument() const; |
47 | 47 |
48 void setContentFrame(Frame&); | 48 void setContentFrame(Frame&); |
49 void clearContentFrame(); | 49 void clearContentFrame(); |
50 | 50 |
51 virtual void disconnectContentFrame(); | 51 virtual void disconnectContentFrame(); |
52 | 52 |
53 // Most subclasses use RenderPart (either RenderEmbeddedObject or RenderIFra
me) | 53 // Most subclasses use LayoutPart (either RenderEmbeddedObject or RenderIFra
me) |
54 // except for HTMLObjectElement and HTMLEmbedElement which may return any | 54 // except for HTMLObjectElement and HTMLEmbedElement which may return any |
55 // LayoutObject when using fallback content. | 55 // LayoutObject when using fallback content. |
56 RenderPart* renderPart() const; | 56 LayoutPart* layoutPart() const; |
57 | 57 |
58 Document* getSVGDocument(ExceptionState&) const; | 58 Document* getSVGDocument(ExceptionState&) const; |
59 | 59 |
60 virtual ScrollbarMode scrollingMode() const { return ScrollbarAuto; } | 60 virtual ScrollbarMode scrollingMode() const { return ScrollbarAuto; } |
61 | 61 |
62 virtual bool loadedNonEmptyDocument() const { return false; } | 62 virtual bool loadedNonEmptyDocument() const { return false; } |
63 virtual void didLoadNonEmptyDocument() { } | 63 virtual void didLoadNonEmptyDocument() { } |
64 | 64 |
65 virtual void renderFallbackContent() { } | 65 virtual void renderFallbackContent() { } |
66 | 66 |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
130 static WillBeHeapHashCountedSet<RawPtrWillBeMember<Node>>& disabledSubtreeRo
ots(); | 130 static WillBeHeapHashCountedSet<RawPtrWillBeMember<Node>>& disabledSubtreeRo
ots(); |
131 | 131 |
132 RawPtrWillBeMember<Node> m_root; | 132 RawPtrWillBeMember<Node> m_root; |
133 }; | 133 }; |
134 | 134 |
135 DEFINE_TYPE_CASTS(HTMLFrameOwnerElement, FrameOwner, owner, owner->isLocal(), ow
ner.isLocal()); | 135 DEFINE_TYPE_CASTS(HTMLFrameOwnerElement, FrameOwner, owner, owner->isLocal(), ow
ner.isLocal()); |
136 | 136 |
137 } // namespace blink | 137 } // namespace blink |
138 | 138 |
139 #endif // HTMLFrameOwnerElement_h | 139 #endif // HTMLFrameOwnerElement_h |
OLD | NEW |