Changeset 46120 in webkit for trunk/JavaScriptCore/API/JSClassRef.h
- Timestamp:
- Jul 20, 2009, 3:04:03 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/API/JSClassRef.h
r38137 r46120 35 35 #include <wtf/RefCounted.h> 36 36 37 struct StaticValueEntry {37 struct StaticValueEntry : FastAllocBase { 38 38 StaticValueEntry(JSObjectGetPropertyCallback _getProperty, JSObjectSetPropertyCallback _setProperty, JSPropertyAttributes _attributes) 39 39 : getProperty(_getProperty), setProperty(_setProperty), attributes(_attributes) … … 46 46 }; 47 47 48 struct StaticFunctionEntry {48 struct StaticFunctionEntry : FastAllocBase { 49 49 StaticFunctionEntry(JSObjectCallAsFunctionCallback _callAsFunction, JSPropertyAttributes _attributes) 50 50 : callAsFunction(_callAsFunction), attributes(_attributes)
Note:
See TracChangeset
for help on using the changeset viewer.