| 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 19 matching lines...) Expand all Loading... |
| 30 #ifndef AXObject_h | 30 #ifndef AXObject_h |
| 31 #define AXObject_h | 31 #define AXObject_h |
| 32 | 32 |
| 33 #include "core/editing/VisiblePosition.h" | 33 #include "core/editing/VisiblePosition.h" |
| 34 #include "core/editing/markers/DocumentMarker.h" | 34 #include "core/editing/markers/DocumentMarker.h" |
| 35 #include "core/inspector/protocol/Accessibility.h" | 35 #include "core/inspector/protocol/Accessibility.h" |
| 36 #include "modules/ModulesExport.h" | 36 #include "modules/ModulesExport.h" |
| 37 #include "platform/geometry/FloatQuad.h" | 37 #include "platform/geometry/FloatQuad.h" |
| 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 "platform/wtf/Forward.h" |
| 41 #include "wtf/Vector.h" | 41 #include "platform/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 AXObjectCacheImpl; | 48 class AXObjectCacheImpl; |
| 49 class Element; | 49 class Element; |
| 50 class FrameView; | 50 class FrameView; |
| 51 class IntPoint; | 51 class IntPoint; |
| (...skipping 1074 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1126 static unsigned number_of_live_ax_objects_; | 1126 static unsigned number_of_live_ax_objects_; |
| 1127 }; | 1127 }; |
| 1128 | 1128 |
| 1129 #define DEFINE_AX_OBJECT_TYPE_CASTS(thisType, predicate) \ | 1129 #define DEFINE_AX_OBJECT_TYPE_CASTS(thisType, predicate) \ |
| 1130 DEFINE_TYPE_CASTS(thisType, AXObject, object, object->predicate, \ | 1130 DEFINE_TYPE_CASTS(thisType, AXObject, object, object->predicate, \ |
| 1131 object.predicate) | 1131 object.predicate) |
| 1132 | 1132 |
| 1133 } // namespace blink | 1133 } // namespace blink |
| 1134 | 1134 |
| 1135 #endif // AXObject_h | 1135 #endif // AXObject_h |
| OLD | NEW |