| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "base/files/file_path.h" | 5 #include "base/files/file_path.h" |
| 6 #include "base/metrics/field_trial.h" | 6 #include "base/metrics/field_trial.h" |
| 7 #include "base/path_service.h" | 7 #include "base/path_service.h" |
| 8 #include "base/strings/string_number_conversions.h" | 8 #include "base/strings/string_number_conversions.h" |
| 9 #include "base/win/scoped_handle.h" | 9 #include "base/win/scoped_handle.h" |
| 10 #include "base/win/win_util.h" | 10 #include "base/win/win_util.h" |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 } | 117 } |
| 118 | 118 |
| 119 // static | 119 // static |
| 120 void ChildProcessLauncherHelper::SetRegisteredFilesForService( | 120 void ChildProcessLauncherHelper::SetRegisteredFilesForService( |
| 121 const std::string& service_name, | 121 const std::string& service_name, |
| 122 catalog::RequiredFileMap required_files) { | 122 catalog::RequiredFileMap required_files) { |
| 123 // No file passing from the manifest on Windows yet. | 123 // No file passing from the manifest on Windows yet. |
| 124 DCHECK(required_files.empty()); | 124 DCHECK(required_files.empty()); |
| 125 } | 125 } |
| 126 | 126 |
| 127 // static |
| 128 void ChildProcessLauncherHelper::ResetRegisteredFilesForTesting() {} |
| 129 |
| 127 } // namespace internal | 130 } // namespace internal |
| 128 } // namespace content | 131 } // namespace content |
| OLD | NEW |