Chromium Code Reviews| Index: media/base/test_data_util.h |
| diff --git a/media/base/test_data_util.h b/media/base/test_data_util.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..3b96bcd833813cb74c137189a8417872ef02814e |
| --- /dev/null |
| +++ b/media/base/test_data_util.h |
| @@ -0,0 +1,24 @@ |
| +// Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef MEDIA_BASE_TEST_DATA_UTIL_H_ |
| +#define MEDIA_BASE_TEST_DATA_UTIL_H_ |
| + |
| +#include <string> |
| + |
| +#include "base/basictypes.h" |
| +#include "base/scoped_ptr.h" |
| +#include "media/base/data_buffer.h" |
| + |
| +namespace media { |
| + |
| +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.
|
| + 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
|
| + int* size); |
| + |
| +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.
|
| + |
| +} // namespace media |
| + |
| +#endif // MEDIA_BASE_TEST_DATA_UTIL_H_ |