| 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 14 matching lines...) Expand all Loading... |
| 25 #include "core/dom/Document.h" | 25 #include "core/dom/Document.h" |
| 26 #include "core/frame/FrameOwner.h" | 26 #include "core/frame/FrameOwner.h" |
| 27 #include "core/html/HTMLElement.h" | 27 #include "core/html/HTMLElement.h" |
| 28 #include "platform/heap/Handle.h" | 28 #include "platform/heap/Handle.h" |
| 29 #include "platform/scroll/ScrollTypes.h" | 29 #include "platform/scroll/ScrollTypes.h" |
| 30 #include "platform/weborigin/SecurityPolicy.h" | 30 #include "platform/weborigin/SecurityPolicy.h" |
| 31 #include "wtf/HashCountedSet.h" | 31 #include "wtf/HashCountedSet.h" |
| 32 | 32 |
| 33 namespace blink { | 33 namespace blink { |
| 34 | 34 |
| 35 class LocalDOMWindow; | |
| 36 class ExceptionState; | 35 class ExceptionState; |
| 37 class Frame; | 36 class Frame; |
| 38 class LayoutPart; | 37 class LayoutPart; |
| 39 class Widget; | 38 class Widget; |
| 40 | 39 |
| 41 class CORE_EXPORT HTMLFrameOwnerElement : public HTMLElement, | 40 class CORE_EXPORT HTMLFrameOwnerElement : public HTMLElement, |
| 42 public FrameOwner { | 41 public FrameOwner { |
| 43 USING_GARBAGE_COLLECTED_MIXIN(HTMLFrameOwnerElement); | 42 USING_GARBAGE_COLLECTED_MIXIN(HTMLFrameOwnerElement); |
| 44 | 43 |
| 45 public: | 44 public: |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 | 155 |
| 157 DEFINE_TYPE_CASTS(HTMLFrameOwnerElement, | 156 DEFINE_TYPE_CASTS(HTMLFrameOwnerElement, |
| 158 FrameOwner, | 157 FrameOwner, |
| 159 owner, | 158 owner, |
| 160 owner->isLocal(), | 159 owner->isLocal(), |
| 161 owner.isLocal()); | 160 owner.isLocal()); |
| 162 | 161 |
| 163 } // namespace blink | 162 } // namespace blink |
| 164 | 163 |
| 165 #endif // HTMLFrameOwnerElement_h | 164 #endif // HTMLFrameOwnerElement_h |
| OLD | NEW |