| 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
|
|
|