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

Unified Diff: media/base/ranges.h

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/base/ranges.h
diff --git a/media/base/ranges.h b/media/base/ranges.h
index e350a49cbcf7fd43cdc68eb63a1cdde3f889e137..958df5c8645257b434931ba1c3d626e4d31df67b 100644
--- a/media/base/ranges.h
+++ b/media/base/ranges.h
@@ -9,7 +9,6 @@
#include <ostream>
#include <vector>
-#include "base/basictypes.h"
#include "base/logging.h"
#include "base/time/time.h"
#include "media/base/media_export.h"
@@ -19,7 +18,7 @@ namespace media {
// Ranges allows holding an ordered list of ranges of [start,end) intervals.
// The canonical example use-case is holding the list of ranges of buffered
// bytes or times in a <video> tag.
-template<class T> // Endpoint type; typically a base::TimeDelta or an int64.
+template <class T> // Endpoint type; typically a base::TimeDelta or an int64_t.
class Ranges {
public:
// Allow copy & assign.

Powered by Google App Engine
This is Rietveld 408576698