| Index: third_party/boringssl/boringssl_unittest.cc
|
| diff --git a/third_party/boringssl/boringssl_unittest.cc b/third_party/boringssl/boringssl_unittest.cc
|
| index 46c68a8dd43c37e589ff4f0b5bca7173a3379d7d..34b489e4135830d1675bb4edb8e0da1f0e150bb7 100644
|
| --- a/third_party/boringssl/boringssl_unittest.cc
|
| +++ b/third_party/boringssl/boringssl_unittest.cc
|
| @@ -32,7 +32,7 @@ void TestProcess(const std::string& name,
|
| std::string output;
|
| EXPECT_TRUE(base::GetAppOutput(cmd, &output));
|
| // Account for Windows line endings.
|
| - ReplaceSubstringsAfterOffset(&output, 0, "\r\n", "\n");
|
| + base::ReplaceSubstringsAfterOffset(&output, 0, "\r\n", "\n");
|
|
|
| const bool ok = output.size() >= 5 &&
|
| memcmp("PASS\n", &output[output.size() - 5], 5) == 0 &&
|
|
|