Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1042)

Unified Diff: content/browser/child_process_launcher.cc

Issue 2684433003: Files required by a service now listed in manifest. (Closed)
Patch Set: Fixed analysis. Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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(
Ken Rockot(use gerrit already) 2017/02/09 17:17:28 nit: Can we just have ServiceManagerContext call t
Jay Civelli 2017/02/09 22:08:27 ChildProcessLauncherHelper is declared in an inter
+ service_name, std::move(required_files));
+}
+
ChildProcessLauncher::Client* ChildProcessLauncher::ReplaceClientForTest(
Client* client) {
Client* ret = client_;

Powered by Google App Engine
This is Rietveld 408576698