Changeset 9110 in webkit for trunk/JavaScriptCore/bindings/runtime_root.h
- Timestamp:
- May 4, 2005, 5:07:02 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/bindings/runtime_root.h
r8384 r9110 39 39 40 40 extern CFMutableDictionaryRef findReferenceDictionary(ObjectImp *imp); 41 extern const Bindings::RootObject *rootForImp (ObjectImp *imp);42 extern const Bindings::RootObject *KJS::Bindings::rootForInterpreter (KJS::Interpreter *interpreter);43 extern void addNativeReference (const Bindings::RootObject *root, ObjectImp *imp);41 extern const RootObject *rootForImp (ObjectImp *imp); 42 extern const RootObject *rootForInterpreter (Interpreter *interpreter); 43 extern void addNativeReference (const RootObject *root, ObjectImp *imp); 44 44 extern void removeNativeReference (ObjectImp *imp); 45 45 … … 58 58 } 59 59 60 void setRootObjectImp ( KJS::ObjectImp *i) {60 void setRootObjectImp (ObjectImp *i) { 61 61 _imp = i; 62 62 #if !USE_CONSERVATIVE_GC … … 69 69 } 70 70 71 KJS::ObjectImp *rootObjectImp() const { return _imp; }71 ObjectImp *rootObjectImp() const { return _imp; } 72 72 73 void setInterpreter ( KJS::Interpreter *i);74 KJS::Interpreter *interpreter() const { return _interpreter; }73 void setInterpreter (Interpreter *i); 74 Interpreter *interpreter() const { return _interpreter; } 75 75 76 76 void removeAllNativeReferences (); … … 92 92 private: 93 93 const void *_nativeHandle; 94 KJS::ObjectImp *_imp;95 KJS::Interpreter *_interpreter;94 ObjectImp *_imp; 95 Interpreter *_interpreter; 96 96 97 97 static FindRootObjectForNativeHandleFunctionPtr _findRootObjectForNativeHandleFunctionPtr;
Note:
See TracChangeset
for help on using the changeset viewer.