// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "base/base_paths.h" #include "base/check.h" #include "base/files/file_path.h" #include "base/files/file_util.h" #include "base/path_service.h" // Tests running on Chromium infrastructure cannot find their test data without // using `base::PathService`, so we swap out the `GetTestData` function with a // Chromium-specific one. std::string GetTestData(const char *path) { … }