Index: net/cert/ct_log_response_parser.cc |
diff --git a/net/cert/ct_log_response_parser.cc b/net/cert/ct_log_response_parser.cc |
index bd59a9eed128b4aae0675e22ad69ec0d29303214..f7cc25fe654cfc0a03b1ca8fc63fca39600e6cf6 100644 |
--- a/net/cert/ct_log_response_parser.cc |
+++ b/net/cert/ct_log_response_parser.cc |
@@ -127,7 +127,8 @@ bool FillSignedTreeHead(const base::StringPiece& json_signed_tree_head, |
signed_tree_head->tree_size = parsed_sth.tree_size; |
signed_tree_head->timestamp = |
base::Time::UnixEpoch() + |
- base::TimeDelta::FromMilliseconds(parsed_sth.timestamp); |
+ base::TimeDelta::FromMilliseconds( |
+ static_cast<int64>(parsed_sth.timestamp)); |
signed_tree_head->signature = parsed_sth.signature; |
memcpy(signed_tree_head->sha256_root_hash, |
parsed_sth.sha256_root_hash.c_str(), |