| 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..f01903f1356099077d5554f5347de324319ecc7a 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,
 | 
| +    catalog::RequiredFileMap required_files) {
 | 
| +  // No file passing from the manifest on Windows yet.
 | 
| +  DCHECK(required_files.empty());
 | 
| +}
 | 
| +
 | 
|  }  // namespace internal
 | 
|  }  // namespace content
 | 
| 
 |