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

Unified Diff: mojo/edk/embedder/connection_param.cc

Issue 2738853002: Connections now take a ConnectionParams instead of a pipe handle. (Closed)
Patch Set: Fix Win compile Created 3 years, 9 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/edk/embedder/connection_param.cc
diff --git a/mojo/edk/embedder/connection_param.cc b/mojo/edk/embedder/connection_param.cc
new file mode 100644
index 0000000000000000000000000000000000000000..7e3c46854c0d316f6d9deafcef41c1528bff09ec
--- /dev/null
+++ b/mojo/edk/embedder/connection_param.cc
@@ -0,0 +1,28 @@
+// Copyright 2017 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/edk/embedder/connection_param.h"
+
+#include <utility>
+
+namespace mojo {
+namespace edk {
+
+ConnectionParam::ConnectionParam(ScopedPlatformHandle channel)
+ : channel_(std::move(channel)) {}
+
+ConnectionParam::ConnectionParam(ConnectionParam&& param)
+ : channel_(std::move(param.channel_)) {}
+
+ConnectionParam& ConnectionParam::operator=(ConnectionParam&& param) {
+ channel_ = std::move(param.channel_);
+ return *this;
+}
+
+ScopedPlatformHandle ConnectionParam::TakeChannelHandle() {
+ return std::move(channel_);
+}
+
+} // namespace edk
+} // namespace mojo

Powered by Google App Engine
This is Rietveld 408576698