Changeset 40055 in webkit for trunk/JavaScriptCore/runtime/JSByteArray.h
- Timestamp:
- Jan 20, 2009, 8:57:04 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/JSByteArray.h
r40046 r40055 27 27 #define JSByteArray_h 28 28 29 #include "ByteArray.h"30 29 #include "JSObject.h" 30 31 #include <wtf/ByteArray.h> 31 32 32 33 namespace JSC { … … 73 74 } 74 75 75 JSByteArray(ExecState* exec, PassRefPtr<Structure>, ByteArray* storage, const JSC::ClassInfo* = &s_defaultInfo);76 JSByteArray(ExecState* exec, PassRefPtr<Structure>, WTF::ByteArray* storage, const JSC::ClassInfo* = &s_defaultInfo); 76 77 static PassRefPtr<Structure> createStructure(JSValuePtr prototype); 77 78 … … 96 97 } 97 98 98 RefPtr< ByteArray> m_storage;99 RefPtr<WTF::ByteArray> m_storage; 99 100 const ClassInfo* m_classInfo; 100 101 };
Note:
See TracChangeset
for help on using the changeset viewer.