Index: media/filters/decrypting_audio_decoder.cc |
diff --git a/media/filters/decrypting_audio_decoder.cc b/media/filters/decrypting_audio_decoder.cc |
index 42f1939c7226889f067a3300c49e50b73a68fd8f..a655782a68238f8d43b4e90964cc167fb7d25083 100644 |
--- a/media/filters/decrypting_audio_decoder.cc |
+++ b/media/filters/decrypting_audio_decoder.cc |
@@ -26,7 +26,7 @@ static inline bool IsOutOfSync(const base::TimeDelta& timestamp_1, |
const base::TimeDelta& timestamp_2) { |
// Out of sync of 100ms would be pretty noticeable and we should keep any |
// drift below that. |
- const int64 kOutOfSyncThresholdInMilliseconds = 100; |
+ const int64_t kOutOfSyncThresholdInMilliseconds = 100; |
return std::abs(timestamp_1.InMilliseconds() - timestamp_2.InMilliseconds()) > |
kOutOfSyncThresholdInMilliseconds; |
} |