// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifdef UNSAFE_BUFFERS_BUILD // TODO(crbug.com/40285824): Remove this and convert code to safer constructs. #pragma allow_unsafe_buffers #endif #ifndef COMPONENTS_VIZ_COMMON_QUADS_TILE_DRAW_QUAD_H_ #define COMPONENTS_VIZ_COMMON_QUADS_TILE_DRAW_QUAD_H_ #include <stddef.h> #include "components/viz/common/quads/content_draw_quad_base.h" #include "components/viz/common/resources/resource_id.h" #include "components/viz/common/viz_common_export.h" namespace viz { class VIZ_COMMON_EXPORT TileDrawQuad : public ContentDrawQuadBase { … }; } // namespace viz #endif // COMPONENTS_VIZ_COMMON_QUADS_TILE_DRAW_QUAD_H_