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

Unified Diff: media/base/buffers.h

Issue 10447035: Introducing DecoderBuffer and general Buffer cleanup. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review fix! Created 8 years, 7 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 | « no previous file | media/base/buffers.cc » ('j') | media/base/decoder_buffer.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/buffers.h
diff --git a/media/base/buffers.h b/media/base/buffers.h
index f4e42642b4f240ce961d987094d59e80365c5dcb..d14f4db515877eabc6e438ba0ad242df0342752d 100644
--- a/media/base/buffers.h
+++ b/media/base/buffers.h
@@ -33,8 +33,6 @@
namespace media {
-class DecryptConfig;
-
// Indicates an invalid or missing timestamp.
MEDIA_EXPORT extern inline base::TimeDelta kNoTimestamp() {
return base::TimeDelta::FromMicroseconds(kint64min);
@@ -56,9 +54,6 @@ class MEDIA_EXPORT Buffer : public base::RefCountedThreadSafe<Buffer> {
// If there's no data in this buffer, it represents end of stream.
bool IsEndOfStream() const;
- // Return DecryptConfig if buffer is encrypted, or NULL otherwise.
- virtual const DecryptConfig* GetDecryptConfig() const;
-
base::TimeDelta GetTimestamp() const {
return timestamp_;
}
« no previous file with comments | « no previous file | media/base/buffers.cc » ('j') | media/base/decoder_buffer.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698