Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef MEDIA_BASE_TEST_DATA_UTIL_H_ | |
| 6 #define MEDIA_BASE_TEST_DATA_UTIL_H_ | |
| 7 | |
| 8 #include <string> | |
| 9 | |
| 10 #include "base/basictypes.h" | |
| 11 #include "base/scoped_ptr.h" | |
| 12 #include "media/base/data_buffer.h" | |
| 13 | |
| 14 namespace media { | |
| 15 | |
| 16 bool ReadTestDataFile(const std::string& name, | |
|
scherkus (not reviewing)
2011/08/11 01:26:29
docs
acolwell GONE FROM CHROMIUM
2011/08/11 23:54:40
Done.
| |
| 17 scoped_array<uint8>* buffer, | |
|
scherkus (not reviewing)
2011/08/11 01:26:29
is the scoped_array out ptr intended to be a helpf
acolwell GONE FROM CHROMIUM
2011/08/11 23:54:40
yes
| |
| 18 int* size); | |
| 19 | |
| 20 bool ReadTestDataFile(const std::string& name, scoped_refptr<Buffer>* buffer); | |
|
scherkus (not reviewing)
2011/08/11 01:26:29
I notice that everyone EXPECT_TRUEs these function
acolwell GONE FROM CHROMIUM
2011/08/11 23:54:40
Done.
| |
| 21 | |
| 22 } // namespace media | |
| 23 | |
| 24 #endif // MEDIA_BASE_TEST_DATA_UTIL_H_ | |
| OLD | NEW |