diff options
author | fischman@chromium.org <fischman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-10 21:07:04 +0000 |
---|---|---|
committer | fischman@chromium.org <fischman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-10 21:07:04 +0000 |
commit | 645af379823ff2af2225cb4068943c01aa333baf (patch) | |
tree | 92e84a6b03f72d984c678a40cf56e1aa5b72a83a /webkit/media/webmediaplayer_impl.h | |
parent | 4daa7a76214fc1685600eaa11f58458fc7adcd80 (diff) | |
download | chromium_src-645af379823ff2af2225cb4068943c01aa333baf.zip chromium_src-645af379823ff2af2225cb4068943c01aa333baf.tar.gz chromium_src-645af379823ff2af2225cb4068943c01aa333baf.tar.bz2 |
Delete bytesLoaded() from WebMediaPlayer implementations now that WebKit no longer calls it.
TBR=scherkus@chromium.org
Review URL: https://chromiumcodereview.appspot.com/10537095
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@141382 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/media/webmediaplayer_impl.h')
-rw-r--r-- | webkit/media/webmediaplayer_impl.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/webkit/media/webmediaplayer_impl.h b/webkit/media/webmediaplayer_impl.h index cd5f918..f01a011 100644 --- a/webkit/media/webmediaplayer_impl.h +++ b/webkit/media/webmediaplayer_impl.h @@ -160,11 +160,6 @@ class WebMediaPlayerImpl virtual WebKit::WebMediaPlayer::NetworkState networkState() const; virtual WebKit::WebMediaPlayer::ReadyState readyState() const; - // TODO(fischman): this method now lies in preparation for removal once - // WebKit::WebMediaPlayer is fixed to not call it. http://webk.it/86113 - // When removing this method also delete fake_bytes_loaded_. - virtual unsigned long long bytesLoaded() const; - virtual bool didLoadingProgress() const; virtual unsigned long long totalBytes() const; @@ -328,9 +323,6 @@ class WebMediaPlayerImpl bool is_local_source_; - // TODO(fischman): see TODO on bytesLoaded() above. - mutable uint64 fake_bytes_loaded_; - DISALLOW_COPY_AND_ASSIGN(WebMediaPlayerImpl); }; |