| Index: Source/modules/accessibility/AXObject.h
|
| diff --git a/Source/modules/accessibility/AXObject.h b/Source/modules/accessibility/AXObject.h
|
| index a02bc6331fdfb487c536a7a05d2cdd7f49627c13..9b2c87cd30360b40b42305122476ed2c0e440946 100644
|
| --- a/Source/modules/accessibility/AXObject.h
|
| +++ b/Source/modules/accessibility/AXObject.h
|
| @@ -391,6 +391,8 @@ protected:
|
| public:
|
| virtual ~AXObject();
|
|
|
| + static unsigned numberOfLiveAXObjects() { return s_numberOfLiveAXObjects; }
|
| +
|
| // After constructing an AXObject, it must be given a
|
| // unique ID, then added to AXObjectCacheImpl, and finally init() must
|
| // be called last.
|
| @@ -806,6 +808,8 @@ protected:
|
| private:
|
| static bool includesARIAWidgetRole(const String&);
|
| static bool hasInteractiveARIAAttribute(const Element&);
|
| +
|
| + static unsigned s_numberOfLiveAXObjects;
|
| };
|
|
|
| #define DEFINE_AX_OBJECT_TYPE_CASTS(thisType, predicate) \
|
|
|