// Copyright 2019 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_DAWN_PLATFORM_H_ #define GPU_COMMAND_BUFFER_SERVICE_DAWN_PLATFORM_H_ #include <dawn/platform/DawnPlatform.h> #include <memory> #include "base/containers/flat_map.h" #include "base/synchronization/lock.h" #include "base/time/time.h" #include "gpu/command_buffer/service/dawn_caching_interface.h" namespace gpu::webgpu { class DawnPlatform : public dawn::platform::Platform { … }; } // namespace gpu::webgpu #endif // GPU_COMMAND_BUFFER_SERVICE_DAWN_PLATFORM_H_