| Index: content/browser/child_process_launcher_helper_win.cc | 
| diff --git a/content/browser/child_process_launcher_helper_win.cc b/content/browser/child_process_launcher_helper_win.cc | 
| index 90d4bdc856f5b1a01bc55b7d9033108e2afed1cd..30dcd924efcc6d7ab2450d3dfdf0f1e320618804 100644 | 
| --- a/content/browser/child_process_launcher_helper_win.cc | 
| +++ b/content/browser/child_process_launcher_helper_win.cc | 
| @@ -4,6 +4,7 @@ | 
|  | 
| #include "base/files/file_path.h" | 
| #include "base/metrics/field_trial.h" | 
| +#include "base/path_service.h" | 
| #include "base/strings/string_number_conversions.h" | 
| #include "base/win/scoped_handle.h" | 
| #include "base/win/win_util.h" | 
| @@ -115,5 +116,13 @@ void ChildProcessLauncherHelper::SetProcessBackgroundedOnLauncherThread( | 
| process.SetProcessBackgrounded(background); | 
| } | 
|  | 
| +// static | 
| +void ChildProcessLauncherHelper::SetRegisteredFilesForService( | 
| +    const std::string& service_name, | 
| +    std::unique_ptr<catalog::RequiredFileMap> required_files) { | 
| +  // No file passing from the manifest on Windows yet. | 
| +  DCHECK(required_files->empty()); | 
| +} | 
| + | 
| }  // namespace internal | 
| }  // namespace content | 
|  |