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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 if (owner.document().unloadStarted()) | 120 if (owner.document().unloadStarted()) |
121 return false; | 121 return false; |
122 for (Node* node = &owner; node; node = node->parentOrShadowHostNode()) { | 122 for (Node* node = &owner; node; node = node->parentOrShadowHostNode()) { |
123 if (disabledSubtreeRoots().contains(node)) | 123 if (disabledSubtreeRoots().contains(node)) |
124 return false; | 124 return false; |
125 } | 125 } |
126 return true; | 126 return true; |
127 } | 127 } |
128 | 128 |
129 private: | 129 private: |
130 static WillBeHeapHashCountedSet<RawPtrWillBeMember<Node> >& disabledSubtreeR
oots(); | 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 |