chromium/components/viz/service/display/aggregated_frame.cc

// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "components/viz/service/display/aggregated_frame.h"

#include "base/logging.h"
#include "base/trace_event/trace_event.h"
#include "base/trace_event/traced_value.h"

namespace viz {

AggregatedFrame::AggregatedFrame() = default;
AggregatedFrame::AggregatedFrame(AggregatedFrame&& other) = default;
AggregatedFrame::~AggregatedFrame() = default;

AggregatedFrame& AggregatedFrame::operator=(AggregatedFrame&& other) = default;

void AggregatedFrame::AsValueInto(base::trace_event::TracedValue* value) const {}

std::string AggregatedFrame::ToString() const {}

}  // namespace viz