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

Unified Diff: mojo/shell/connect_params.h

Issue 1877753003: Move mojo\shell to services\shell (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@62scan
Patch Set: . Created 4 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
« no previous file with comments | « mojo/shell/background/tests/test_service.cc ('k') | mojo/shell/connect_params.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/shell/connect_params.h
diff --git a/mojo/shell/connect_params.h b/mojo/shell/connect_params.h
deleted file mode 100644
index bacf543b3e12a34b0955fe8e8fc4fffc050e3537..0000000000000000000000000000000000000000
--- a/mojo/shell/connect_params.h
+++ /dev/null
@@ -1,81 +0,0 @@
-// Copyright 2015 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_CONNECT_PARAMS_H_
-#define MOJO_SHELL_CONNECT_PARAMS_H_
-
-#include <string>
-#include <utility>
-
-#include "base/callback.h"
-#include "base/macros.h"
-#include "mojo/public/cpp/bindings/interface_request.h"
-#include "mojo/shell/public/cpp/identity.h"
-#include "mojo/shell/public/interfaces/connector.mojom.h"
-#include "mojo/shell/public/interfaces/interface_provider.mojom.h"
-
-namespace mojo {
-namespace shell {
-
-// This class represents a request for the application manager to connect to an
-// application.
-class ConnectParams {
- public:
- ConnectParams();
- ~ConnectParams();
-
- void set_source(const Identity& source) { source_ = source; }
- const Identity& source() const { return source_; }
- void set_target(const Identity& target) { target_ = target; }
- const Identity& target() const { return target_; }
-
- void set_remote_interfaces(shell::mojom::InterfaceProviderRequest value) {
- remote_interfaces_ = std::move(value);
- }
- shell::mojom::InterfaceProviderRequest TakeRemoteInterfaces() {
- return std::move(remote_interfaces_);
- }
-
- void set_local_interfaces(shell::mojom::InterfaceProviderPtr value) {
- local_interfaces_ = std::move(value);
- }
- shell::mojom::InterfaceProviderPtr TakeLocalInterfaces() {
- return std::move(local_interfaces_);
- }
-
- void set_client_process_connection(
- shell::mojom::ClientProcessConnectionPtr client_process_connection) {
- client_process_connection_ = std::move(client_process_connection);
- }
- shell::mojom::ClientProcessConnectionPtr TakeClientProcessConnection() {
- return std::move(client_process_connection_);
- }
-
- void set_connect_callback(
- const shell::mojom::Connector::ConnectCallback& value) {
- connect_callback_ = value;
- }
- const shell::mojom::Connector::ConnectCallback& connect_callback() const {
- return connect_callback_;
- }
-
- private:
- // It may be null (i.e., is_null() returns true) which indicates that there is
- // no source (e.g., for the first application or in tests).
- Identity source_;
- // The identity of the application being connected to.
- Identity target_;
-
- shell::mojom::InterfaceProviderRequest remote_interfaces_;
- shell::mojom::InterfaceProviderPtr local_interfaces_;
- shell::mojom::ClientProcessConnectionPtr client_process_connection_;
- shell::mojom::Connector::ConnectCallback connect_callback_;
-
- DISALLOW_COPY_AND_ASSIGN(ConnectParams);
-};
-
-} // namespace shell
-} // namespace mojo
-
-#endif // MOJO_SHELL_CONNECT_PARAMS_H_
« no previous file with comments | « mojo/shell/background/tests/test_service.cc ('k') | mojo/shell/connect_params.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698