// Copyright 2017 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef GPU_COMMAND_BUFFER_CLIENT_CLIENT_DISCARDABLE_MANAGER_H_ #define GPU_COMMAND_BUFFER_CLIENT_CLIENT_DISCARDABLE_MANAGER_H_ #include <map> #include <set> #include "base/containers/queue.h" #include "gpu/command_buffer/common/command_buffer.h" #include "gpu/command_buffer/common/discardable_handle.h" #include "gpu/gpu_export.h" namespace gpu { // ClientDiscardableManager is a helper class used by the // ClientDiscardableTextureManager. It allows for the creation and management // of ClientDiscardableHandles. class GPU_EXPORT ClientDiscardableManager { … }; } // namespace gpu #endif // GPU_COMMAND_BUFFER_CLIENT_CLIENT_DISCARDABLE_MANAGER_H_