| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 class AXObject; | 42 class AXObject; |
| 43 class AXObjectCache; | 43 class AXObjectCache; |
| 44 class Element; | 44 class Element; |
| 45 class LocalFrame; | 45 class LocalFrame; |
| 46 class FrameView; | 46 class FrameView; |
| 47 class HTMLAnchorElement; | 47 class HTMLAnchorElement; |
| 48 class HTMLAreaElement; | 48 class HTMLAreaElement; |
| 49 class IntPoint; | 49 class IntPoint; |
| 50 class IntSize; | 50 class IntSize; |
| 51 class Node; | 51 class Node; |
| 52 class Range; |
| 52 class RenderObject; | 53 class RenderObject; |
| 53 class RenderListItem; | 54 class RenderListItem; |
| 54 class ScrollableArea; | 55 class ScrollableArea; |
| 55 class VisibleSelection; | 56 class VisibleSelection; |
| 56 class Widget; | 57 class Widget; |
| 57 | 58 |
| 58 typedef unsigned AXID; | 59 typedef unsigned AXID; |
| 59 | 60 |
| 60 enum AccessibilityRole { | 61 enum AccessibilityRole { |
| 61 AlertDialogRole = 1, | 62 AlertDialogRole = 1, |
| (...skipping 511 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 573 | 574 |
| 574 bool m_detached; | 575 bool m_detached; |
| 575 }; | 576 }; |
| 576 | 577 |
| 577 #define DEFINE_AX_OBJECT_TYPE_CASTS(thisType, predicate) \ | 578 #define DEFINE_AX_OBJECT_TYPE_CASTS(thisType, predicate) \ |
| 578 DEFINE_TYPE_CASTS(thisType, AXObject, object, object->predicate, object.pred
icate) | 579 DEFINE_TYPE_CASTS(thisType, AXObject, object, object->predicate, object.pred
icate) |
| 579 | 580 |
| 580 } // namespace WebCore | 581 } // namespace WebCore |
| 581 | 582 |
| 582 #endif // AXObject_h | 583 #endif // AXObject_h |
| OLD | NEW |