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

Unified Diff: media/formats/webm/webm_cluster_parser.h

Issue 2815303006: Convert MediaLog from being ref counted to owned by WebMediaPlayer. (Closed)
Patch Set: Rebase. Created 3 years, 8 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
« no previous file with comments | « media/formats/webm/webm_audio_client.cc ('k') | media/formats/webm/webm_cluster_parser.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/formats/webm/webm_cluster_parser.h
diff --git a/media/formats/webm/webm_cluster_parser.h b/media/formats/webm/webm_cluster_parser.h
index 4fd9d843b9b5ce0960d4575befac0d2248012689..03ac73ddfb1e6be87c37690798908ff2e76a0e32 100644
--- a/media/formats/webm/webm_cluster_parser.h
+++ b/media/formats/webm/webm_cluster_parser.h
@@ -54,7 +54,7 @@ class MEDIA_EXPORT WebMClusterParser : public WebMParserClient {
Track(int track_num,
bool is_video,
base::TimeDelta default_duration,
- const scoped_refptr<MediaLog>& media_log);
+ MediaLog* media_log);
Track(const Track& other);
~Track();
@@ -141,7 +141,7 @@ class MEDIA_EXPORT WebMClusterParser : public WebMParserClient {
// splicing when these estimates are observed in SourceBufferStream.
base::TimeDelta estimated_next_frame_duration_;
- scoped_refptr<MediaLog> media_log_;
+ MediaLog* media_log_;
};
typedef std::map<int, Track> TextTrackMap;
@@ -157,7 +157,7 @@ class MEDIA_EXPORT WebMClusterParser : public WebMParserClient {
const std::string& audio_encryption_key_id,
const std::string& video_encryption_key_id,
const AudioCodec audio_codec,
- const scoped_refptr<MediaLog>& media_log);
+ MediaLog* media_log);
~WebMClusterParser() override;
// Resets the parser state so it can accept a new cluster.
@@ -315,7 +315,7 @@ class MEDIA_EXPORT WebMClusterParser : public WebMParserClient {
// kInfiniteDuration if no buffers are currently missing duration.
DecodeTimestamp ready_buffer_upper_bound_;
- scoped_refptr<MediaLog> media_log_;
+ MediaLog* media_log_;
DISALLOW_IMPLICIT_CONSTRUCTORS(WebMClusterParser);
};
« no previous file with comments | « media/formats/webm/webm_audio_client.cc ('k') | media/formats/webm/webm_cluster_parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698