// Copyright 2010 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/id_manager.h" #include "base/check.h" namespace gpu { namespace gles2 { IdManager::IdManager() = default; IdManager::~IdManager() = default; bool IdManager::AddMapping(GLuint client_id, GLuint service_id) { … } bool IdManager::RemoveMapping(GLuint client_id, GLuint service_id) { … } bool IdManager::GetServiceId(GLuint client_id, GLuint* service_id) { … } bool IdManager::GetClientId(GLuint service_id, GLuint* client_id) { … } } // namespace gles2 } // namespace gpu