| 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 24 matching lines...) Expand all Loading... |
| 35 #include "platform/geometry/LayoutRect.h" | 35 #include "platform/geometry/LayoutRect.h" |
| 36 #include "wtf/Forward.h" | 36 #include "wtf/Forward.h" |
| 37 #include "wtf/RefPtr.h" | 37 #include "wtf/RefPtr.h" |
| 38 #include "wtf/Vector.h" | 38 #include "wtf/Vector.h" |
| 39 | 39 |
| 40 namespace blink { | 40 namespace blink { |
| 41 | 41 |
| 42 class AXObject; | 42 class AXObject; |
| 43 class AXObjectCache; | 43 class AXObjectCache; |
| 44 class Element; | 44 class Element; |
| 45 class LocalFrame; | |
| 46 class FrameView; | 45 class FrameView; |
| 47 class HTMLAnchorElement; | |
| 48 class HTMLAreaElement; | |
| 49 class IntPoint; | 46 class IntPoint; |
| 50 class IntSize; | |
| 51 class Node; | 47 class Node; |
| 52 class Range; | |
| 53 class RenderObject; | 48 class RenderObject; |
| 54 class RenderListItem; | |
| 55 class ScrollableArea; | 49 class ScrollableArea; |
| 56 class VisibleSelection; | |
| 57 class Widget; | 50 class Widget; |
| 58 | 51 |
| 59 typedef unsigned AXID; | 52 typedef unsigned AXID; |
| 60 | 53 |
| 61 enum AccessibilityRole { | 54 enum AccessibilityRole { |
| 62 AlertDialogRole = 1, | 55 AlertDialogRole = 1, |
| 63 AlertRole, | 56 AlertRole, |
| 64 AnnotationRole, | 57 AnnotationRole, |
| 65 ApplicationRole, | 58 ApplicationRole, |
| 66 ArticleRole, | 59 ArticleRole, |
| (...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 584 | 577 |
| 585 bool m_detached; | 578 bool m_detached; |
| 586 }; | 579 }; |
| 587 | 580 |
| 588 #define DEFINE_AX_OBJECT_TYPE_CASTS(thisType, predicate) \ | 581 #define DEFINE_AX_OBJECT_TYPE_CASTS(thisType, predicate) \ |
| 589 DEFINE_TYPE_CASTS(thisType, AXObject, object, object->predicate, object.pred
icate) | 582 DEFINE_TYPE_CASTS(thisType, AXObject, object, object->predicate, object.pred
icate) |
| 590 | 583 |
| 591 } // namespace blink | 584 } // namespace blink |
| 592 | 585 |
| 593 #endif // AXObject_h | 586 #endif // AXObject_h |
| OLD | NEW |