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

Unified Diff: services/shell/runner/host/child_process.cc

Issue 2419723002: Move services/shell to services/service_manager (Closed)
Patch Set: rebase Created 4 years, 2 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
« no previous file with comments | « services/shell/runner/host/child_process.h ('k') | services/shell/runner/host/child_process_base.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/shell/runner/host/child_process.cc
diff --git a/services/shell/runner/host/child_process.cc b/services/shell/runner/host/child_process.cc
deleted file mode 100644
index ad48fe631bd5b6abdec142594a2f068be8117cee..0000000000000000000000000000000000000000
--- a/services/shell/runner/host/child_process.cc
+++ /dev/null
@@ -1,72 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "services/shell/runner/host/child_process.h"
-
-#include <stdint.h>
-
-#include <memory>
-#include <utility>
-
-#include "base/base_switches.h"
-#include "base/bind.h"
-#include "base/callback_helpers.h"
-#include "base/command_line.h"
-#include "base/files/file_path.h"
-#include "base/i18n/icu_util.h"
-#include "base/location.h"
-#include "base/logging.h"
-#include "base/macros.h"
-#include "base/memory/ref_counted.h"
-#include "base/message_loop/message_loop.h"
-#include "base/single_thread_task_runner.h"
-#include "base/synchronization/waitable_event.h"
-#include "base/threading/thread.h"
-#include "base/threading/thread_checker.h"
-#include "base/threading/thread_task_runner_handle.h"
-#include "mojo/edk/embedder/embedder.h"
-#include "mojo/edk/embedder/platform_channel_pair.h"
-#include "mojo/edk/embedder/process_delegate.h"
-#include "mojo/edk/embedder/scoped_platform_handle.h"
-#include "mojo/public/cpp/bindings/binding.h"
-#include "mojo/public/cpp/system/core.h"
-#include "services/shell/runner/common/switches.h"
-#include "services/shell/runner/host/child_process_base.h"
-#include "services/shell/runner/host/native_library_runner.h"
-#include "services/shell/runner/init.h"
-
-namespace shell {
-
-namespace {
-
-void RunNativeLibrary(base::NativeLibrary library,
- mojom::ServiceRequest service_request) {
- if (!RunServiceInNativeLibrary(library, std::move(service_request))) {
- LOG(ERROR) << "Failure to RunServiceInNativeLibrary()";
- }
-}
-
-} // namespace
-
-int ChildProcessMain() {
- DVLOG(2) << "ChildProcessMain()";
- const base::CommandLine& command_line =
- *base::CommandLine::ForCurrentProcess();
-
- base::NativeLibrary library = 0;
- // Load the application library before we engage the sandbox.
- base::FilePath library_path =
- command_line.GetSwitchValuePath(switches::kChildProcess);
- if (!library_path.empty())
- library = LoadNativeLibrary(library_path);
- base::i18n::InitializeICU();
- if (library)
- CallLibraryEarlyInitialization(library);
-
- ChildProcessMainWithCallback(base::Bind(&RunNativeLibrary, library));
-
- return 0;
-}
-
-} // namespace shell
« no previous file with comments | « services/shell/runner/host/child_process.h ('k') | services/shell/runner/host/child_process_base.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698