| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2008, 2009, 2011 Apple Inc. All rights reserved. | 2 * Copyright (C) 2008, 2009, 2011 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2008 Nuanti Ltd. | 3 * Copyright (C) 2008 Nuanti Ltd. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * | 8 * |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 25 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 28 */ | 28 */ |
| 29 | 29 |
| 30 #ifndef AccessibilityObject_h | 30 #ifndef AccessibilityObject_h |
| 31 #define AccessibilityObject_h | 31 #define AccessibilityObject_h |
| 32 | 32 |
| 33 #include "core/editing/TextIterator.h" | 33 #include "core/editing/TextIterator.h" |
| 34 #include "core/editing/VisiblePosition.h" | 34 #include "core/editing/VisiblePosition.h" |
| 35 #include "core/editing/VisibleSelection.h" | |
| 36 #include "core/platform/graphics/FloatQuad.h" | 35 #include "core/platform/graphics/FloatQuad.h" |
| 37 #include "core/platform/graphics/LayoutRect.h" | 36 #include "core/platform/graphics/LayoutRect.h" |
| 38 #include <wtf/Forward.h> | 37 #include "wtf/Forward.h" |
| 39 #include <wtf/RefPtr.h> | 38 #include "wtf/RefPtr.h" |
| 40 #include <wtf/Vector.h> | 39 #include "wtf/Vector.h" |
| 41 | 40 |
| 42 namespace WebCore { | 41 namespace WebCore { |
| 43 | 42 |
| 44 class AccessibilityObject; | 43 class AccessibilityObject; |
| 45 class AXObjectCache; | 44 class AXObjectCache; |
| 46 class Element; | 45 class Element; |
| 47 class Frame; | 46 class Frame; |
| 48 class FrameView; | 47 class FrameView; |
| 49 class HTMLAnchorElement; | 48 class HTMLAnchorElement; |
| 50 class HTMLAreaElement; | 49 class HTMLAreaElement; |
| (...skipping 506 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 557 #if !HAVE(ACCESSIBILITY) | 556 #if !HAVE(ACCESSIBILITY) |
| 558 inline const AccessibilityObject::AccessibilityChildrenVector& AccessibilityObje
ct::children() { return m_children; } | 557 inline const AccessibilityObject::AccessibilityChildrenVector& AccessibilityObje
ct::children() { return m_children; } |
| 559 inline String AccessibilityObject::actionVerb() const { return emptyString(); } | 558 inline String AccessibilityObject::actionVerb() const { return emptyString(); } |
| 560 inline int AccessibilityObject::lineForPosition(const VisiblePosition&) const {
return -1; } | 559 inline int AccessibilityObject::lineForPosition(const VisiblePosition&) const {
return -1; } |
| 561 inline void AccessibilityObject::updateBackingStore() { } | 560 inline void AccessibilityObject::updateBackingStore() { } |
| 562 #endif | 561 #endif |
| 563 | 562 |
| 564 } // namespace WebCore | 563 } // namespace WebCore |
| 565 | 564 |
| 566 #endif // AccessibilityObject_h | 565 #endif // AccessibilityObject_h |
| OLD | NEW |