Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2977)

Unified Diff: content/renderer/media/render_media_log.h

Issue 1236543007: MSE: Log buffered audio splice generation to media-internals (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/renderer/media/render_media_log.h
diff --git a/content/renderer/media/render_media_log.h b/content/renderer/media/render_media_log.h
index b5e41a560e5136789a95cfb85e798eebffacec52..63ccdd78b3bee9c5dccc1d95f63d6c5d03c88c24 100644
--- a/content/renderer/media/render_media_log.h
+++ b/content/renderer/media/render_media_log.h
@@ -46,8 +46,11 @@ class CONTENT_EXPORT RenderMediaLog : public media::MediaLog {
base::TimeTicks last_ipc_send_time_;
std::vector<media::MediaLogEvent> queued_media_events_;
- // Limits the number buffered extents changed events we send over IPC to one.
+ // Limit the number buffered extents changed and buffered audio splice
+ // statistics changed events we send over IPC to one each.
scoped_ptr<media::MediaLogEvent> last_buffered_extents_changed_event_;
+ scoped_ptr<media::MediaLogEvent>
+ last_buffered_audio_splice_stats_changed_event_;
DISALLOW_COPY_AND_ASSIGN(RenderMediaLog);
};

Powered by Google App Engine
This is Rietveld 408576698