2013-09-24 01:35:40 +00:00
|
|
|
// Copyright (c) 2012 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.
|
|
|
|
|
2014-01-09 23:50:18 +00:00
|
|
|
#ifndef MEDIA_TEST_TEST_DATA_UTIL_H_
|
|
|
|
#define MEDIA_TEST_TEST_DATA_UTIL_H_
|
2013-09-24 01:35:40 +00:00
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include "base/basictypes.h"
|
|
|
|
#include "base/files/file_path.h"
|
|
|
|
|
|
|
|
namespace media {
|
|
|
|
|
|
|
|
// Returns a file path for a file in the media/test/data directory.
|
|
|
|
base::FilePath GetTestDataFilePath(const std::string& name);
|
|
|
|
|
2014-01-09 23:50:18 +00:00
|
|
|
// Reads a test file from media/test/data directory and returns its content.
|
2013-09-24 04:17:12 +00:00
|
|
|
std::vector<uint8> ReadTestDataFile(const std::string& name);
|
2013-09-24 01:35:40 +00:00
|
|
|
|
|
|
|
} // namespace media
|
|
|
|
|
2014-01-09 23:50:18 +00:00
|
|
|
#endif // MEDIA_TEST_TEST_DATA_UTIL_H_
|