Andreea Costinas | e45d54b | 2020-03-10 09:21:14 +0100 | [diff] [blame^] | 1 | // Copyright 2020 The Chromium OS Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | #include "system-proxy/curl_socket.h" |
| 6 | |
| 7 | #include <memory> |
| 8 | #include <utility> |
| 9 | |
| 10 | namespace system_proxy { |
| 11 | |
| 12 | CurlSocket::CurlSocket(base::ScopedFD fd, ScopedCurlEasyhandle curl_easyhandle) |
| 13 | : arc_networkd::Socket(std::move(fd)), |
| 14 | curl_easyhandle_(std::move(curl_easyhandle)) {} |
| 15 | |
| 16 | CurlSocket::~CurlSocket() = default; |
| 17 | |
| 18 | } // namespace system_proxy |