chromium/gpu/command_buffer/service/gles2_query_manager.h

// Copyright 2018 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_SERVICE_GLES2_QUERY_MANAGER_H_
#define GPU_COMMAND_BUFFER_SERVICE_GLES2_QUERY_MANAGER_H_

#include <stdint.h>

#include <map>
#include <memory>

#include "base/memory/raw_ptr.h"
#include "base/memory/ref_counted.h"
#include "gpu/command_buffer/common/constants.h"
#include "gpu/command_buffer/service/query_manager.h"
#include "gpu/gpu_gles2_export.h"

namespace gl {
class GPUTimer;
class GPUTimingClient;
}  // namespace gl

namespace gpu {
namespace gles2 {

class FeatureInfo;
class GLES2Decoder;

// Similar to QueryManager with extensions to support GLES2 specific queries.
class GPU_GLES2_EXPORT GLES2QueryManager : public QueryManager {};

}  // namespace gles2
}  // namespace gpu

#endif  // GPU_COMMAND_BUFFER_SERVICE_GLES2_QUERY_MANAGER_H_