blob: db447705600199a6417803e59f3c5f0414a3741a [file] [log] [blame]
// 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/common/surfaces/subtree_capture_id.h"
#include "base/strings/stringprintf.h"
namespace viz {
std::string SubtreeCaptureId::ToString() const {
return base::StringPrintf("SubtreeCaptureId(%s)",
subtree_id_.ToString().c_str());
}
} // namespace viz