chromium/cc/paint/element_id.cc

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

#include "cc/paint/element_id.h"

#include <inttypes.h>

#include <limits>
#include <ostream>
#include <string>

#include "base/strings/stringprintf.h"
#include "base/trace_event/traced_value.h"

namespace cc {

ElementId LayerIdToElementIdForTesting(int layer_id) {}

void ElementId::AddToTracedValue(base::trace_event::TracedValue* res) const {}

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

size_t ElementIdHash::operator()(ElementId key) const {}

std::ostream& operator<<(std::ostream& out, const ElementId& id) {}

}  // namespace cc