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

Unified Diff: services/service_manager/public/cpp/lib/service_runner.cc

Issue 2860023002: Eliminate lib directory for service manager client lib. (Closed)
Patch Set: Created 3 years, 8 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: services/service_manager/public/cpp/lib/service_runner.cc
diff --git a/services/service_manager/public/cpp/lib/service_runner.cc b/services/service_manager/public/cpp/lib/service_runner.cc
deleted file mode 100644
index 4ba2f58e87f22c5f4452e598fb56fce7a0fdef55..0000000000000000000000000000000000000000
--- a/services/service_manager/public/cpp/lib/service_runner.cc
+++ /dev/null
@@ -1,75 +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/service_manager/public/cpp/service_runner.h"
-
-#include "base/at_exit.h"
-#include "base/bind.h"
-#include "base/command_line.h"
-#include "base/memory/ptr_util.h"
-#include "base/message_loop/message_loop.h"
-#include "base/process/launch.h"
-#include "base/run_loop.h"
-#include "services/service_manager/public/cpp/service.h"
-#include "services/service_manager/public/cpp/service_context.h"
-
-namespace service_manager {
-
-int g_service_runner_argc;
-const char* const* g_service_runner_argv;
-
-ServiceRunner::ServiceRunner(Service* service)
- : service_(base::WrapUnique(service)),
- message_loop_type_(base::MessageLoop::TYPE_DEFAULT),
- has_run_(false) {}
-
-ServiceRunner::~ServiceRunner() {}
-
-void ServiceRunner::InitBaseCommandLine() {
- base::CommandLine::Init(g_service_runner_argc, g_service_runner_argv);
-}
-
-void ServiceRunner::set_message_loop_type(base::MessageLoop::Type type) {
- DCHECK_NE(base::MessageLoop::TYPE_CUSTOM, type);
- DCHECK(!has_run_);
-
- message_loop_type_ = type;
-}
-
-MojoResult ServiceRunner::Run(MojoHandle service_request_handle,
- bool init_base) {
- DCHECK(!has_run_);
- has_run_ = true;
-
- std::unique_ptr<base::AtExitManager> at_exit;
- if (init_base) {
- InitBaseCommandLine();
- at_exit.reset(new base::AtExitManager);
- }
-
- {
- std::unique_ptr<base::MessageLoop> loop;
- loop.reset(new base::MessageLoop(message_loop_type_));
-
- context_.reset(new ServiceContext(
- std::move(service_),
- mojo::MakeRequest<mojom::Service>(mojo::MakeScopedHandle(
- mojo::MessagePipeHandle(service_request_handle)))));
- base::RunLoop run_loop;
- context_->SetQuitClosure(run_loop.QuitClosure());
- run_loop.Run();
- context_.reset();
- }
- return MOJO_RESULT_OK;
-}
-
-MojoResult ServiceRunner::Run(MojoHandle service_request_handle) {
- return Run(service_request_handle, false);
-}
-
-void ServiceRunner::Quit() {
- base::MessageLoop::current()->QuitWhenIdle();
-}
-
-} // namespace service_manager

Powered by Google App Engine
This is Rietveld 408576698