Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1434)

Unified Diff: media/blink/url_index.cc

Issue 1534273002: Switch to standard integer types in media/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: media/blink/url_index.cc
diff --git a/media/blink/url_index.cc b/media/blink/url_index.cc
index 125c445003c2a7df980dd310066f209180f87649..aadc8cad36e010f922574bc45f6c8e4e0499d10e 100644
--- a/media/blink/url_index.cc
+++ b/media/blink/url_index.cc
@@ -84,7 +84,7 @@ void UrlData::set_cacheable(bool cacheable) {
cacheable_ = cacheable;
}
-void UrlData::set_length(int64 length) {
+void UrlData::set_length(int64_t length) {
DCHECK(thread_checker_.CalledOnValidThread());
if (length != kPositionNotSpecified) {
length_ = length;

Powered by Google App Engine
This is Rietveld 408576698