// 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 CONTENT_RENDERER_GPU_BENCHMARKING_EXTENSION_H_ #define CONTENT_RENDERER_GPU_BENCHMARKING_EXTENSION_H_ #include "base/memory/weak_ptr.h" #include "content/common/input/input_injector.mojom.h" #include "gin/wrappable.h" #include "mojo/public/cpp/bindings/remote.h" namespace gin { class Arguments; } namespace v8 { class Isolate; class Object; } // namespace v8 namespace content { class RenderFrameImpl; // gin class for gpu benchmarking class GpuBenchmarking : public gin::Wrappable<GpuBenchmarking> { … }; } // namespace content #endif // CONTENT_RENDERER_GPU_BENCHMARKING_EXTENSION_H_