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

Unified Diff: webkit/api/public/WebMediaPlayer.h

Issue 160076: BufferedDataSource to support server without range request support... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 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
« no previous file with comments | « media/filters/file_data_source.cc ('k') | webkit/api/src/WebMediaPlayerClientImpl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/api/public/WebMediaPlayer.h
===================================================================
--- webkit/api/public/WebMediaPlayer.h (revision 21893)
+++ webkit/api/public/WebMediaPlayer.h (working copy)
@@ -59,6 +59,13 @@
HaveEnoughData,
};
+ enum MovieLoadType{
+ Unknown,
+ Download,
+ StoredStream,
+ LiveStream,
+ };
+
virtual ~WebMediaPlayer() {}
virtual void load(const WebURL&) = 0;
@@ -104,6 +111,9 @@
virtual unsigned long long bytesLoaded() const = 0;
virtual unsigned long long totalBytes() const = 0;
+
+ virtual bool hasSingleSecurityOrigin() const = 0;
+ virtual MovieLoadType movieLoadType() const = 0;
};
} // namespace WebKit
« no previous file with comments | « media/filters/file_data_source.cc ('k') | webkit/api/src/WebMediaPlayerClientImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698