Chromium Code Reviews| Index: media/mp4/mp4_stream_parser_unittest.cc |
| diff --git a/media/mp4/mp4_stream_parser_unittest.cc b/media/mp4/mp4_stream_parser_unittest.cc |
| index 6d7221a9c5e6b7c93664db280b0da6da5198cc26..a68bd93035e380949393b0cd8cfc1a35329f781f 100644 |
| --- a/media/mp4/mp4_stream_parser_unittest.cc |
| +++ b/media/mp4/mp4_stream_parser_unittest.cc |
| @@ -76,8 +76,10 @@ class MP4StreamParserTest : public testing::Test { |
| return true; |
| } |
| - bool KeyNeededF(scoped_array<uint8> init_data, int init_data_size) { |
| - DVLOG(1) << "KeyNeededF: " << init_data_size; |
| + bool KeyNeededF(const std::string& type, |
| + scoped_array<uint8> init_data, int init_data_size) { |
| + DVLOG(1) << "KeyNeededF: type=" << type |
|
ddorwin
2012/10/27 00:08:26
Shouldn't we just EXPECT_STREQ the type?
xhwang
2012/10/27 00:50:14
Done.
|
| + << ", init_data_size=" << init_data_size; |
| return true; |
| } |