// Copyright 2016 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/common/surfaces/frame_sink_id.h" #include <ostream> #include <string_view> #include "base/strings/stringprintf.h" namespace viz { std::string FrameSinkId::ToString() const { … } std::string FrameSinkId::ToString(std::string_view debug_label) const { … } std::ostream& operator<<(std::ostream& out, const FrameSinkId& frame_sink_id) { … } void FrameSinkId::WriteIntoTrace( perfetto::TracedProto<TraceProto> proto) const { … } } // namespace viz