diff options
author | scottfr@chromium.org <scottfr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-09 17:53:45 +0000 |
---|---|---|
committer | scottfr@chromium.org <scottfr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-09 17:53:45 +0000 |
commit | 24d75c714285a0c31b5e688a7c97fbc883e389c9 (patch) | |
tree | f908b22afc362f392ba02ac3a9a47175bca83a1d /media/base/media_log_event.h | |
parent | 381455c05cb4f766d36cd99bb3fabde3e0d5246b (diff) | |
download | chromium_src-24d75c714285a0c31b5e688a7c97fbc883e389c9.zip chromium_src-24d75c714285a0c31b5e688a7c97fbc883e389c9.tar.gz chromium_src-24d75c714285a0c31b5e688a7c97fbc883e389c9.tar.bz2 |
Log BufferedResourceLoader events to MediaLog.
BUG=
TEST=
Review URL: http://codereview.chromium.org/7591001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@96014 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'media/base/media_log_event.h')
-rw-r--r-- | media/base/media_log_event.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/media/base/media_log_event.h b/media/base/media_log_event.h index dd1735e..0c8e3da 100644 --- a/media/base/media_log_event.h +++ b/media/base/media_log_event.h @@ -26,6 +26,12 @@ struct MediaLogEvent { // params: none. PLAY, PAUSE, + + // The extents of the sliding buffer have changed. + // params: "buffer_start": <first buffered byte>. + // "buffer_current": <current offset>. + // "buffer_end": <last buffered byte>. + BUFFERED_EXTENTS_CHANGED, }; int32 id; |