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. |