diff options
Diffstat (limited to 'media')
-rw-r--r-- | media/base/ranges.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/media/base/ranges.h b/media/base/ranges.h index 022a491..f42b34a 100644 --- a/media/base/ranges.h +++ b/media/base/ranges.h @@ -20,7 +20,7 @@ namespace media { // 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. -class MEDIA_EXPORT Ranges { +class Ranges { public: // Allow copy & assign. @@ -104,9 +104,8 @@ size_t Ranges<T>::Add(T start, T end) { } template<> -MEDIA_EXPORT void Ranges<base::TimeDelta>::DCheckLT( - const base::TimeDelta& lhs, - const base::TimeDelta& rhs) const; +void Ranges<base::TimeDelta>::DCheckLT(const base::TimeDelta& lhs, + const base::TimeDelta& rhs) const; template<class T> void Ranges<T>::DCheckLT(const T& lhs, const T& rhs) const { |