
This updates headers that forward-declare it and a few random places to use the namespace explicitly. There us a using declaration in file_path.h that makes the rest compile, which we can do in future passes. Review URL: https://codereview.chromium.org/12163003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180245 0039d316-1c4b-4281-b951-d872f2087c98
26 lines
663 B
C++
26 lines
663 B
C++
// 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_
|