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

Unified Diff: services/shell/tests/connect/connect_test_driver.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
Index: services/shell/tests/connect/connect_test_driver.cc
diff --git a/services/shell/tests/connect/connect_test_driver.cc b/services/shell/tests/connect/connect_test_driver.cc
deleted file mode 100644
index 17ecdbba0a15c34482206d3557e9b0dc357a38be..0000000000000000000000000000000000000000
--- a/services/shell/tests/connect/connect_test_driver.cc
+++ /dev/null
@@ -1,84 +0,0 @@
-// Copyright 2016 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 <memory>
-
-#include "base/at_exit.h"
-#include "base/command_line.h"
-#include "base/macros.h"
-#include "base/process/process.h"
-#include "mojo/public/cpp/bindings/binding_set.h"
-#include "services/shell/public/cpp/connection.h"
-#include "services/shell/public/cpp/connector.h"
-#include "services/shell/public/cpp/service.h"
-#include "services/shell/runner/child/test_native_main.h"
-#include "services/shell/runner/init.h"
-#include "services/shell/tests/connect/connect_test.mojom.h"
-#include "services/shell/tests/util.h"
-
-using shell::test::mojom::ClientProcessTest;
-using shell::test::mojom::ClientProcessTestRequest;
-
-namespace {
-
-class Driver : public shell::Service,
- public shell::InterfaceFactory<ClientProcessTest>,
- public ClientProcessTest {
- public:
- Driver() {}
- ~Driver() override {}
-
- private:
- // shell::Service:
- bool OnConnect(const shell::Identity& remote_identity,
- shell::InterfaceRegistry* registry) override {
- registry->AddInterface<ClientProcessTest>(this);
- return true;
- }
- bool OnStop() override {
- // TODO(rockot): http://crbug.com/596621. Should be able to remove this
- // override entirely.
- _exit(1);
- }
-
- // shell::InterfaceFactory<ConnectTestService>:
- void Create(const shell::Identity& remote_identity,
- ClientProcessTestRequest request) override {
- bindings_.AddBinding(this, std::move(request));
- }
-
- // test::mojom::ClientProcessTest:
- void LaunchAndConnectToProcess(
- const LaunchAndConnectToProcessCallback& callback) override {
- base::Process process;
- std::unique_ptr<shell::Connection> connection =
- shell::test::LaunchAndConnectToProcess(
-#if defined(OS_WIN)
- "connect_test_exe.exe",
-#else
- "connect_test_exe",
-#endif
- shell::Identity("exe:connect_test_exe",
- shell::mojom::kInheritUserID),
- connector(), &process);
- callback.Run(static_cast<int32_t>(connection->GetResult()),
- connection->GetRemoteIdentity());
- }
-
- mojo::BindingSet<ClientProcessTest> bindings_;
-
- DISALLOW_COPY_AND_ASSIGN(Driver);
-};
-
-} // namespace
-
-int main(int argc, char** argv) {
- base::AtExitManager at_exit;
- base::CommandLine::Init(argc, argv);
-
- shell::InitializeLogging();
-
- Driver driver;
- return shell::TestNativeMain(&driver);
-}

Powered by Google App Engine
This is Rietveld 408576698