summaryrefslogtreecommitdiffstats
path: root/chromeos/chromeos_test_utils.h
blob: db0bc661c12b179b67f2db2b9c1afd4b08195eab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// 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.

#ifndef CHROMEOS_CHROMEOS_TEST_UTILS_H_
#define CHROMEOS_CHROMEOS_TEST_UTILS_H_

#include <string>

namespace base {
class FilePath;
}

namespace chromeos {
namespace test_utils {

// Returns the path to the given test data file for this library.
bool GetTestDataPath(const std::string& component,
                     const std::string& filename,
                     base::FilePath* data_dir);

}  // namespace test_utils
}  // namespace chromeos

#endif  // CHROMEOS_CHROMEOS_TEST_UTILS_H_