| Index: vm/object.h
|
| ===================================================================
|
| --- vm/object.h (revision 18281)
|
| +++ vm/object.h (working copy)
|
| @@ -4750,6 +4750,7 @@
|
| virtual intptr_t ByteLength() const;
|
|
|
| virtual void* GetPeer() const { return NULL; }
|
| + virtual uint8_t* ByteAddr(intptr_t byte_offset) const;
|
|
|
| FinalizablePersistentHandle* AddFinalizer(
|
| void* peer, Dart_WeakPersistentHandleFinalizer callback) const;
|
| @@ -4771,7 +4772,6 @@
|
| intptr_t length);
|
|
|
| protected:
|
| - virtual uint8_t* ByteAddr(intptr_t byte_offset) const;
|
| virtual void SetPeer(void* peer) const { }
|
|
|
| template<typename HandleT, typename RawT>
|
|
|