PCompositorBridgeTypes.ipdlh (600B)
1 /* This Source Code Form is subject to the terms of the Mozilla Public 2 * License, v. 2.0. If a copy of the MPL was not distributed with this 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 5 using mozilla::TimeStamp from "mozilla/TimeStamp.h"; 6 [MoveOnly] using class mozilla::ipc::BigBuffer from "mozilla/ipc/BigBuffer.h"; 7 8 namespace mozilla { 9 namespace layers { 10 11 struct RecordedFrameData { 12 TimeStamp timeOffset; 13 uint32_t length; 14 }; 15 16 struct FrameRecording { 17 TimeStamp startTime; 18 RecordedFrameData[] frames; 19 BigBuffer bytes; 20 }; 21 22 } // namespace layers 23 } // namespace mozilla