// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CC_RASTER_RASTER_QUERY_QUEUE_H_ #define CC_RASTER_RASTER_QUERY_QUEUE_H_ #include "base/containers/circular_deque.h" #include "base/memory/raw_ptr.h" #include "base/synchronization/lock.h" #include "base/thread_annotations.h" #include "base/time/time.h" #include "cc/cc_export.h" #include "third_party/khronos/GLES2/gl2.h" namespace viz { class RasterContextProvider; } // namespace viz namespace cc { struct CC_EXPORT RasterQuery { … }; class CC_EXPORT RasterQueryQueue { … }; } // namespace cc #endif // CC_RASTER_RASTER_QUERY_QUEUE_H_