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

Unified Diff: media/base/stream_parser_buffer.h

Issue 17408005: Refactored DecoderBuffer to use unix_hacker_style naming. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@localrefactor
Patch Set: Created 7 years, 6 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: media/base/stream_parser_buffer.h
diff --git a/media/base/stream_parser_buffer.h b/media/base/stream_parser_buffer.h
index 8899f11216d7d273cef2646de1727fcba9c02b21..c8e4798e89a86a43ae925ed0d3d56256bb7e3fd1 100644
--- a/media/base/stream_parser_buffer.h
+++ b/media/base/stream_parser_buffer.h
@@ -15,10 +15,10 @@ class MEDIA_EXPORT StreamParserBuffer : public DecoderBuffer {
// Value used to signal an invalid decoder config ID.
enum { kInvalidConfigId = -1 };
- static scoped_refptr<StreamParserBuffer> CreateEOSBuffer();
- static scoped_refptr<StreamParserBuffer> CopyFrom(
+ static scoped_refptr<StreamParserBuffer> create_eos_buffer();
+ static scoped_refptr<StreamParserBuffer> copy_from(
const uint8* data, int data_size, bool is_keyframe);
- static scoped_refptr<StreamParserBuffer> CopyFrom(
+ static scoped_refptr<StreamParserBuffer> copy_from(
const uint8* data, int data_size,
const uint8* side_data, int side_data_size, bool is_keyframe);
bool IsKeyframe() const { return is_keyframe_; }

Powered by Google App Engine
This is Rietveld 408576698