diff options
author | aurimas@chromium.org <aurimas@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-21 18:57:12 +0000 |
---|---|---|
committer | aurimas@chromium.org <aurimas@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-21 18:57:12 +0000 |
commit | 70061185f9870794cefdb6a631d36f82c944eff3 (patch) | |
tree | 66901f7a90773f593adedd07f322fac6a1df1e1b /media | |
parent | 05095a3834b245f3284a98a0b85b7bc3eae32abe (diff) | |
download | chromium_src-70061185f9870794cefdb6a631d36f82c944eff3.zip chromium_src-70061185f9870794cefdb6a631d36f82c944eff3.tar.gz chromium_src-70061185f9870794cefdb6a631d36f82c944eff3.tar.bz2 |
Revert "Fix Component build for Android."
This reverts commit f4d67e80c8908301eaf8bc2c578c36b46883c2b7.
Reverting https://codereview.chromium.org/15292012/
TBR=acolwell,asvitkine
NOTRY=true
Review URL: https://chromiumcodereview.appspot.com/15590002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@201334 0039d316-1c4b-4281-b951-d872f2087c98
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 { |