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

Unified Diff: media/base/decoder_buffer_queue_unittest.cc

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, 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/base/decoder_buffer_queue.cc ('k') | media/base/decoder_buffer_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/decoder_buffer_queue_unittest.cc
diff --git a/media/base/decoder_buffer_queue_unittest.cc b/media/base/decoder_buffer_queue_unittest.cc
index 243e465a0e0b93a637652e144051bbb0480294bc..32e62db06b1dc79a0efbf9e69f337a88b435c643 100644
--- a/media/base/decoder_buffer_queue_unittest.cc
+++ b/media/base/decoder_buffer_queue_unittest.cc
@@ -20,8 +20,8 @@ static base::TimeDelta ToTimeDelta(int seconds) {
// Negative numbers will be converted to kNoTimestamp();
static scoped_refptr<DecoderBuffer> CreateBuffer(int timestamp) {
scoped_refptr<DecoderBuffer> buffer = new DecoderBuffer(0);
- buffer->SetTimestamp(ToTimeDelta(timestamp));
- buffer->SetDuration(ToTimeDelta(0));
+ buffer->set_timestamp(ToTimeDelta(timestamp));
+ buffer->set_duration(ToTimeDelta(0));
return buffer;
}
« no previous file with comments | « media/base/decoder_buffer_queue.cc ('k') | media/base/decoder_buffer_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698