Chromium Code Reviews| Index: testing/embedder_test.cpp |
| diff --git a/testing/embedder_test.cpp b/testing/embedder_test.cpp |
| index 7bc7bdda7b88f8aa7d7f7a21424acc87043386d3..3664d92ce4a3ffe19065baa2cf0bba8ea0ac0db4 100644 |
| --- a/testing/embedder_test.cpp |
| +++ b/testing/embedder_test.cpp |
| @@ -2,7 +2,7 @@ |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| -#include "embedder_test.h" |
| +#include "testing/embedder_test.h" |
| #include <limits.h> |
| @@ -14,8 +14,9 @@ |
| #include "public/fpdf_dataavail.h" |
| #include "public/fpdf_text.h" |
| #include "public/fpdfview.h" |
| -#include "test_support.h" |
| #include "testing/gmock/include/gmock/gmock.h" |
| +#include "testing/test_support.h" |
| +#include "testing/utils/path_service.h" |
| #ifdef PDF_ENABLE_V8 |
| #include "v8/include/v8.h" |
| @@ -94,7 +95,10 @@ void EmbedderTest::TearDown() { |
| bool EmbedderTest::OpenDocument(const std::string& filename, |
|
Lei Zhang
2015/11/07 01:48:51
Can you update the comment in testing/embedder_tes
Wei Li
2015/11/07 02:36:12
Done.
|
| bool must_linearize) { |
| - file_contents_ = GetFileContents(filename.c_str(), &file_length_); |
| + std::string file_path; |
| + if (!PathService::GetTestFilePath(filename, &file_path)) |
| + return false; |
| + file_contents_ = GetFileContents(file_path.c_str(), &file_length_); |
| if (!file_contents_) |
| return false; |