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

Unified Diff: mojo/application/public/cpp/lib/application_runner.cc

Issue 1565343003: Move mojo/application/public -> mojo/shell/public (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@fetcher
Patch Set: . Created 4 years, 11 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: mojo/application/public/cpp/lib/application_runner.cc
diff --git a/mojo/application/public/cpp/lib/application_runner.cc b/mojo/application/public/cpp/lib/application_runner.cc
deleted file mode 100644
index d3ac30ccb8b1256b639bdcf0cea51351395ab188..0000000000000000000000000000000000000000
--- a/mojo/application/public/cpp/lib/application_runner.cc
+++ /dev/null
@@ -1,77 +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 "mojo/application/public/cpp/application_runner.h"
-
-#include "base/at_exit.h"
-#include "base/command_line.h"
-#include "base/memory/scoped_ptr.h"
-#include "base/message_loop/message_loop.h"
-#include "base/process/launch.h"
-#include "mojo/application/public/cpp/application_delegate.h"
-#include "mojo/application/public/cpp/application_impl.h"
-#include "mojo/message_pump/message_pump_mojo.h"
-
-namespace mojo {
-
-int g_application_runner_argc;
-const char* const* g_application_runner_argv;
-
-ApplicationRunner::ApplicationRunner(ApplicationDelegate* delegate)
- : delegate_(scoped_ptr<ApplicationDelegate>(delegate)),
- message_loop_type_(base::MessageLoop::TYPE_CUSTOM),
- has_run_(false) {}
-
-ApplicationRunner::~ApplicationRunner() {}
-
-void ApplicationRunner::InitBaseCommandLine() {
- base::CommandLine::Init(g_application_runner_argc, g_application_runner_argv);
-}
-
-void ApplicationRunner::set_message_loop_type(base::MessageLoop::Type type) {
- DCHECK_NE(base::MessageLoop::TYPE_CUSTOM, type);
- DCHECK(!has_run_);
-
- message_loop_type_ = type;
-}
-
-MojoResult ApplicationRunner::Run(MojoHandle application_request_handle,
- bool init_base) {
- DCHECK(!has_run_);
- has_run_ = true;
-
- scoped_ptr<base::AtExitManager> at_exit;
- if (init_base) {
- InitBaseCommandLine();
- at_exit.reset(new base::AtExitManager);
- }
-
- {
- scoped_ptr<base::MessageLoop> loop;
- if (message_loop_type_ == base::MessageLoop::TYPE_CUSTOM)
- loop.reset(new base::MessageLoop(common::MessagePumpMojo::Create()));
- else
- loop.reset(new base::MessageLoop(message_loop_type_));
-
- ApplicationImpl impl(delegate_.get(),
- MakeRequest<Application>(MakeScopedHandle(
- MessagePipeHandle(application_request_handle))));
- loop->Run();
- // It's very common for the delegate to cache the app and terminate on
- // errors. If we don't delete the delegate before the app we run the risk
- // of the delegate having a stale reference to the app and trying to use it.
- // Note that we destruct the message loop first because that might trigger
- // connection error handlers and they might access objects created by the
- // delegate.
- loop.reset();
- delegate_.reset();
- }
- return MOJO_RESULT_OK;
-}
-
-MojoResult ApplicationRunner::Run(MojoHandle application_request_handle) {
- return Run(application_request_handle, true);
-}
-
-} // namespace mojo
« no previous file with comments | « mojo/application/public/cpp/lib/application_impl.cc ('k') | mojo/application/public/cpp/lib/application_test_base.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698