Ignore:
Timestamp:
Jan 20, 2009, 8:57:04 AM (16 years ago)
Author:
[email protected]
Message:

Move runtime/ByteArray to wtf/ByteArray

RS=Dan Bernstein

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/runtime/JSByteArray.h

    r40046 r40055  
    2727#define JSByteArray_h
    2828
    29 #include "ByteArray.h"
    3029#include "JSObject.h"
     30
     31#include <wtf/ByteArray.h>
    3132
    3233namespace JSC {
     
    7374        }
    7475
    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);
    7677        static PassRefPtr<Structure> createStructure(JSValuePtr prototype);
    7778       
     
    9697        }
    9798
    98         RefPtr<ByteArray> m_storage;
     99        RefPtr<WTF::ByteArray> m_storage;
    99100        const ClassInfo* m_classInfo;
    100101    };
Note: See TracChangeset for help on using the changeset viewer.