Backed out 2 changesets (bug 1881078, bug 1879806) for causing dt failures @ devtools...
[gecko.git] / gfx / ipc / FileHandleWrapper.cpp
blob7597e27c1d8ff6bd75d642c2a2334672459a3428
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #include "FileHandleWrapper.h"
9 #include "mozilla/ipc/FileDescriptor.h"
11 namespace mozilla::gfx {
13 FileHandleWrapper::FileHandleWrapper(mozilla::UniqueFileHandle&& aHandle)
14 : mHandle(std::move(aHandle)) {}
16 FileHandleWrapper::~FileHandleWrapper() {}
18 mozilla::detail::FileHandleType FileHandleWrapper::GetHandle() {
19 return mHandle.get();
22 mozilla::UniqueFileHandle FileHandleWrapper::ClonePlatformHandle() {
23 auto handle = ipc::FileDescriptor(GetHandle());
24 return handle.TakePlatformHandle();
27 } // namespace mozilla::gfx