| Index: Source/core/html/canvas/DataView.h
|
| diff --git a/Source/core/html/canvas/DataView.h b/Source/core/html/canvas/DataView.h
|
| index 8b10c426f06d73f10eacaccab5f4a0f506a5e0f3..67afae603b6c5eae9d3767402b489719c0a68a10 100644
|
| --- a/Source/core/html/canvas/DataView.h
|
| +++ b/Source/core/html/canvas/DataView.h
|
| @@ -64,7 +64,7 @@ public:
|
| void setInt16(unsigned byteOffset, int16_t value, bool littleEndian, ExceptionCode&);
|
| void setUint16(unsigned byteOffset, uint16_t value, ExceptionCode& ec) { setUint16(byteOffset, value, false, ec); }
|
| void setUint16(unsigned byteOffset, uint16_t value, bool littleEndian, ExceptionCode&);
|
| - void setInt32(unsigned byteOffset, int32_t value, ExceptionCode& ec) { setInt32(byteOffset, value, false, ec); }
|
| + void setInt32(unsigned byteOffset, int32_t value, ExceptionCode& ec) { setInt32(byteOffset, value, false, ec); }
|
| void setInt32(unsigned byteOffset, int32_t value, bool littleEndian, ExceptionCode&);
|
| void setUint32(unsigned byteOffset, uint32_t value, ExceptionCode& ec) { setUint32(byteOffset, value, false, ec); }
|
| void setUint32(unsigned byteOffset, uint32_t value, bool littleEndian, ExceptionCode&);
|
|
|