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