 Chromium Code Reviews
 Chromium Code Reviews Issue 297303004:
  Revert 21502 - "Move OS::MemCopy and OS::MemMove out of platform to utils"  (Closed) 
  Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
    
  
    Issue 297303004:
  Revert 21502 - "Move OS::MemCopy and OS::MemMove out of platform to utils"  (Closed) 
  Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge| Index: src/serialize.h | 
| diff --git a/src/serialize.h b/src/serialize.h | 
| index 3f3c679b0264d049b4b7f2be4ada7e77f243054a..aaf97e32d2a95b9956725e856377342343db5677 100644 | 
| --- a/src/serialize.h | 
| +++ b/src/serialize.h | 
| @@ -283,7 +283,7 @@ int SnapshotByteSource::GetInt() { | 
| void SnapshotByteSource::CopyRaw(byte* to, int number_of_bytes) { | 
| - MemCopy(to, data_ + position_, number_of_bytes); | 
| + OS::MemCopy(to, data_ + position_, number_of_bytes); | 
| position_ += number_of_bytes; | 
| } |