#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 { … }
}