| Index: content/test/content_browser_test_utils.cc
|
| diff --git a/content/test/content_browser_test_utils.cc b/content/test/content_browser_test_utils.cc
|
| index b8c64c378d77a6037fd00d4765cedb6bf46a0abc..b1c2e51d3719cdffe513f64107af148a079271d0 100644
|
| --- a/content/test/content_browser_test_utils.cc
|
| +++ b/content/test/content_browser_test_utils.cc
|
| @@ -21,11 +21,11 @@
|
|
|
| namespace content {
|
|
|
| -FilePath GetTestFilePath(const char* dir, const char* file) {
|
| - FilePath path;
|
| +base::FilePath GetTestFilePath(const char* dir, const char* file) {
|
| + base::FilePath path;
|
| PathService::Get(DIR_TEST_DATA, &path);
|
| - return path.Append(
|
| - FilePath().AppendASCII(dir).Append(FilePath().AppendASCII(file)));
|
| + return path.Append(base::FilePath().AppendASCII(dir).Append(
|
| + base::FilePath().AppendASCII(file)));
|
| }
|
|
|
| GURL GetTestUrl(const char* dir, const char* file) {
|
|
|