// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "gpu/command_buffer/service/test_memory_tracker.h" #include "base/check.h" namespace gpu { void TestMemoryTracker::TrackMemoryAllocatedChange(int64_t delta) { … } uint64_t TestMemoryTracker::GetSize() const { … } uint64_t TestMemoryTracker::ClientTracingId() const { … } int TestMemoryTracker::ClientId() const { … } uint64_t TestMemoryTracker::ContextGroupTracingId() const { … } } // namespace gpu