summaryrefslogtreecommitdiff
path: root/chromium/mojo/shell/runner/host/in_process_native_runner.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/mojo/shell/runner/host/in_process_native_runner.h')
-rw-r--r--chromium/mojo/shell/runner/host/in_process_native_runner.h71
1 files changed, 0 insertions, 71 deletions
diff --git a/chromium/mojo/shell/runner/host/in_process_native_runner.h b/chromium/mojo/shell/runner/host/in_process_native_runner.h
deleted file mode 100644
index 675ea8d9568..00000000000
--- a/chromium/mojo/shell/runner/host/in_process_native_runner.h
+++ /dev/null
@@ -1,71 +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.
-
-#ifndef MOJO_SHELL_RUNNER_HOST_IN_PROCESS_NATIVE_RUNNER_H_
-#define MOJO_SHELL_RUNNER_HOST_IN_PROCESS_NATIVE_RUNNER_H_
-
-#include "base/callback.h"
-#include "base/files/file_path.h"
-#include "base/macros.h"
-#include "base/memory/scoped_ptr.h"
-#include "base/scoped_native_library.h"
-#include "base/threading/simple_thread.h"
-#include "mojo/shell/native_runner.h"
-#include "mojo/shell/runner/host/native_application_support.h"
-
-namespace base {
-class TaskRunner;
-}
-
-namespace mojo {
-namespace shell {
-
-// An implementation of |NativeRunner| that loads/runs the given app (from the
-// file system) on a separate thread (in the current process).
-class InProcessNativeRunner : public NativeRunner,
- public base::DelegateSimpleThread::Delegate {
- public:
- InProcessNativeRunner();
- ~InProcessNativeRunner() override;
-
- // NativeRunner:
- mojom::ShellClientPtr Start(
- const base::FilePath& app_path,
- const Identity& target,
- bool start_sandboxed,
- const base::Callback<void(base::ProcessId)>& pid_available_callback,
- const base::Closure& app_completed_callback) override;
-
- private:
- // |base::DelegateSimpleThread::Delegate| method:
- void Run() override;
-
- base::FilePath app_path_;
- InterfaceRequest<mojom::ShellClient> request_;
- base::Callback<bool(void)> app_completed_callback_runner_;
-
- base::ScopedNativeLibrary app_library_;
- scoped_ptr<base::DelegateSimpleThread> thread_;
-
- DISALLOW_COPY_AND_ASSIGN(InProcessNativeRunner);
-};
-
-class InProcessNativeRunnerFactory : public NativeRunnerFactory {
- public:
- explicit InProcessNativeRunnerFactory(base::TaskRunner* launch_process_runner)
- : launch_process_runner_(launch_process_runner) {}
- ~InProcessNativeRunnerFactory() override {}
-
- scoped_ptr<NativeRunner> Create(const base::FilePath& app_path) override;
-
- private:
- base::TaskRunner* const launch_process_runner_;
-
- DISALLOW_COPY_AND_ASSIGN(InProcessNativeRunnerFactory);
-};
-
-} // namespace shell
-} // namespace mojo
-
-#endif // MOJO_SHELL_RUNNER_HOST_IN_PROCESS_NATIVE_RUNNER_H_