| 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 27 matching lines...) Expand all Loading... |
| 38 #include "platform/geometry/LayoutRect.h" | 38 #include "platform/geometry/LayoutRect.h" |
| 39 #include "platform/graphics/Color.h" | 39 #include "platform/graphics/Color.h" |
| 40 #include "wtf/Forward.h" | 40 #include "wtf/Forward.h" |
| 41 #include "wtf/Vector.h" | 41 #include "wtf/Vector.h" |
| 42 | 42 |
| 43 class SkMatrix44; | 43 class SkMatrix44; |
| 44 | 44 |
| 45 namespace blink { | 45 namespace blink { |
| 46 | 46 |
| 47 class AXObject; | 47 class AXObject; |
| 48 class AXObjectCache; | |
| 49 class AXObjectCacheImpl; | 48 class AXObjectCacheImpl; |
| 50 class Element; | 49 class Element; |
| 51 class FrameView; | 50 class FrameView; |
| 52 class IntPoint; | 51 class IntPoint; |
| 53 class Node; | 52 class Node; |
| 54 class LayoutObject; | 53 class LayoutObject; |
| 55 class ScrollableArea; | 54 class ScrollableArea; |
| 56 | 55 |
| 57 typedef unsigned AXID; | 56 typedef unsigned AXID; |
| 58 | 57 |
| (...skipping 1006 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1065 static unsigned s_numberOfLiveAXObjects; | 1064 static unsigned s_numberOfLiveAXObjects; |
| 1066 }; | 1065 }; |
| 1067 | 1066 |
| 1068 #define DEFINE_AX_OBJECT_TYPE_CASTS(thisType, predicate) \ | 1067 #define DEFINE_AX_OBJECT_TYPE_CASTS(thisType, predicate) \ |
| 1069 DEFINE_TYPE_CASTS(thisType, AXObject, object, object->predicate, \ | 1068 DEFINE_TYPE_CASTS(thisType, AXObject, object, object->predicate, \ |
| 1070 object.predicate) | 1069 object.predicate) |
| 1071 | 1070 |
| 1072 } // namespace blink | 1071 } // namespace blink |
| 1073 | 1072 |
| 1074 #endif // AXObject_h | 1073 #endif // AXObject_h |
| OLD | NEW |