| Index: base/big_endian.h
|
| diff --git a/base/big_endian.h b/base/big_endian.h
|
| index 35df5e797760dcf346759c32069eb79e378b4c5d..914767f4286e0959b2d5112e101c830289ae68d0 100644
|
| --- a/base/big_endian.h
|
| +++ b/base/big_endian.h
|
| @@ -63,6 +63,7 @@ class BASE_EXPORT BigEndianReader {
|
| bool ReadU8(uint8* value);
|
| bool ReadU16(uint16* value);
|
| bool ReadU32(uint32* value);
|
| + bool ReadU64(uint64* value);
|
|
|
| private:
|
| // Hidden to promote type safety.
|
| @@ -87,6 +88,7 @@ class BASE_EXPORT BigEndianWriter {
|
| bool WriteU8(uint8 value);
|
| bool WriteU16(uint16 value);
|
| bool WriteU32(uint32 value);
|
| + bool WriteU64(uint64 value);
|
|
|
| private:
|
| // Hidden to promote type safety.
|
|
|