Changeset 35807 in webkit for trunk/JavaScriptCore/kjs/JSGlobalObject.h
- Timestamp:
- Aug 17, 2008, 1:23:49 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/JSGlobalObject.h
r35203 r35807 78 78 { 79 79 } 80 81 virtual ~JSGlobalObjectData() 82 { 83 } 80 84 81 85 JSGlobalObject* next; … … 134 138 135 139 protected: 136 JSGlobalObject(JSValue* prototype, JS Object* globalThisValue)137 : JSVariableObject(prototype, new JSGlobalObjectData(this, globalThisValue))140 JSGlobalObject(JSValue* prototype, JSGlobalObjectData* d, JSObject* globalThisValue) 141 : JSVariableObject(prototype, d) 138 142 { 139 143 init(globalThisValue);
Note:
See TracChangeset
for help on using the changeset viewer.