Backed out changeset 2960ea3e50ca (bug 1881157) for causing crashtest assertion failu...
[gecko.git] / layout / printing / DrawEventRecorder.cpp
blob69b9b48ae6f2ebbfcd60f5f536ffd326f8f4d1dd
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 "DrawEventRecorder.h"
9 namespace mozilla {
10 namespace layout {
12 void DrawEventRecorderPRFileDesc::RecordEvent(
13 const gfx::RecordedEvent& aEvent) {
14 aEvent.RecordToStream(mOutputStream);
16 Flush();
19 DrawEventRecorderPRFileDesc::~DrawEventRecorderPRFileDesc() {
20 if (IsOpen()) {
21 Close();
25 void DrawEventRecorderPRFileDesc::Flush() { mOutputStream.Flush(); }
27 bool DrawEventRecorderPRFileDesc::IsOpen() { return mOutputStream.IsOpen(); }
29 void DrawEventRecorderPRFileDesc::OpenFD(PRFileDesc* aFd) {
30 MOZ_DIAGNOSTIC_ASSERT(!IsOpen());
32 mOutputStream.OpenFD(aFd);
33 WriteHeader(mOutputStream);
36 void DrawEventRecorderPRFileDesc::Close() {
37 MOZ_DIAGNOSTIC_ASSERT(IsOpen());
39 mOutputStream.Close();
42 void DrawEventRecorderPRFileDesc::AddDependentSurface(uint64_t aDependencyId) {
43 mDependentSurfaces.AppendElement(aDependencyId);
46 nsTArray<uint64_t>&& DrawEventRecorderPRFileDesc::TakeDependentSurfaces() {
47 return std::move(mDependentSurfaces);
50 } // namespace layout
51 } // namespace mozilla