// 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. #ifndef GPU_COMMAND_BUFFER_COMMON_COMMAND_BUFFER_H_ #define GPU_COMMAND_BUFFER_COMMON_COMMAND_BUFFER_H_ #include <stddef.h> #include <stdint.h> #include "gpu/command_buffer/common/buffer.h" #include "gpu/command_buffer/common/constants.h" #include "gpu/gpu_export.h" namespace gpu { // Common interface for CommandBuffer implementations. class GPU_EXPORT CommandBuffer { … }; } // namespace gpu #endif // GPU_COMMAND_BUFFER_COMMON_COMMAND_BUFFER_H_