| Index: content/browser/child_process_launcher.cc
|
| diff --git a/content/browser/child_process_launcher.cc b/content/browser/child_process_launcher.cc
|
| index 6970d248feaae5d83716e9eee6dee0c0d243d81a..9ad9149ff2be2d9d24c7745cd261499a9b2fae57 100644
|
| --- a/content/browser/child_process_launcher.cc
|
| +++ b/content/browser/child_process_launcher.cc
|
| @@ -145,6 +145,14 @@ bool ChildProcessLauncher::TerminateProcess(const base::Process& process,
|
| return ChildProcessLauncherHelper::TerminateProcess(process, exit_code, wait);
|
| }
|
|
|
| +// static
|
| +void ChildProcessLauncher::SetRegisteredFilesForService(
|
| + const std::string& service_name,
|
| + std::unique_ptr<catalog::RequiredFileMap> required_files) {
|
| + ChildProcessLauncherHelper::SetRegisteredFilesForService(
|
| + service_name, std::move(required_files));
|
| +}
|
| +
|
| ChildProcessLauncher::Client* ChildProcessLauncher::ReplaceClientForTest(
|
| Client* client) {
|
| Client* ret = client_;
|
|
|