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

Unified Diff: media/filters/dummy_demuxer_factory.h

Issue 8661002: Fire CanPlayThrough immediately for local and streaming media files (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase ToT Created 9 years, 1 month 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: media/filters/dummy_demuxer_factory.h
diff --git a/media/filters/dummy_demuxer_factory.h b/media/filters/dummy_demuxer_factory.h
index 66627998690f0c12fb1b836f5ab30c8f05e0fc7d..0d8a6f77120ff96a18ebf033b20234f6006da957 100644
--- a/media/filters/dummy_demuxer_factory.h
+++ b/media/filters/dummy_demuxer_factory.h
@@ -14,7 +14,7 @@ namespace media {
class MEDIA_EXPORT DummyDemuxerFactory : public DemuxerFactory {
public:
- DummyDemuxerFactory(bool has_video, bool has_audio);
+ DummyDemuxerFactory(bool has_video, bool has_audio, bool local_source);
virtual ~DummyDemuxerFactory();
// DemuxerFactory methods.
@@ -24,6 +24,7 @@ class MEDIA_EXPORT DummyDemuxerFactory : public DemuxerFactory {
private:
bool has_video_;
bool has_audio_;
+ bool local_source_;
DISALLOW_IMPLICIT_CONSTRUCTORS(DummyDemuxerFactory);
};

Powered by Google App Engine
This is Rietveld 408576698