Index: base/basictypes.h |
diff --git a/base/basictypes.h b/base/basictypes.h |
index 76077358abca50ab33a4efdc93f32e7240af60b3..dd10aeadc878b30d72d2249292fac5d9c38749ba 100644 |
--- a/base/basictypes.h |
+++ b/base/basictypes.h |
@@ -27,6 +27,7 @@ |
// (U)INT{8,16,32,64}_{MIN,MAX} in case of globals (and include <stdint.h>). |
// http://crbug.com/138542 |
const uint8 kuint8max = 0xFF; |
+const uint16 kuint16max = 0xFFFF; |
const uint32 kuint32max = 0xFFFFFFFF; |
const uint64 kuint64max = 0xFFFFFFFFFFFFFFFFULL; |
const int32 kint32min = -0x7FFFFFFF - 1; |