Index: base/string_number_conversions.h |
diff --git a/base/string_number_conversions.h b/base/string_number_conversions.h |
index 54f05b0954327dfdc2c91404a77b7973b079f58c..64b746896d26298a798fb79be3e35469ce92ac8c 100644 |
--- a/base/string_number_conversions.h |
+++ b/base/string_number_conversions.h |
@@ -95,6 +95,8 @@ BASE_EXPORT std::string HexEncode(const void* bytes, size_t size); |
// Best effort conversion, see StringToInt above for restrictions. |
BASE_EXPORT bool HexStringToInt(const StringPiece& input, int* output); |
+BASE_EXPORT bool HexStringToInt64(const StringPiece& input, int64* output); |
+ |
// Similar to the previous functions, except that output is a vector of bytes. |
// |*output| will contain as many bytes as were successfully parsed prior to the |
// error. There is no overflow, but input.size() must be evenly divisible by 2. |