mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 06:16:30 +03:00
32 lines
962 B
C++
32 lines
962 B
C++
// Copyright 2018 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 "base/fuchsia/fidl_interface_request.h"
|
|
|
|
namespace base {
|
|
namespace fuchsia {
|
|
|
|
FidlInterfaceRequest::FidlInterfaceRequest(FidlInterfaceRequest&& moved) =
|
|
default;
|
|
|
|
FidlInterfaceRequest::FidlInterfaceRequest(const char* interface_name,
|
|
zx::channel channel)
|
|
: interface_name_(interface_name), channel_(std::move(channel)) {}
|
|
FidlInterfaceRequest::~FidlInterfaceRequest() = default;
|
|
|
|
// static
|
|
FidlInterfaceRequest FidlInterfaceRequest::CreateFromChannelUnsafe(
|
|
const char* interface_name,
|
|
zx::channel channel) {
|
|
return FidlInterfaceRequest(interface_name, std::move(channel));
|
|
}
|
|
|
|
zx::channel FidlInterfaceRequest::TakeChannel() {
|
|
DCHECK(channel_);
|
|
return std::move(channel_);
|
|
}
|
|
|
|
} // namespace fuchsia
|
|
} // namespace base
|