// Copyright 2017 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_BROWSER_RENDERER_HOST_INPUT_INPUT_INJECTOR_IMPL_H_ #define CONTENT_BROWSER_RENDERER_HOST_INPUT_INPUT_INJECTOR_IMPL_H_ #include <memory> #include "content/common/input/input_injector.mojom.h" #include "content/common/input/synthetic_gesture.h" #include "mojo/public/cpp/bindings/pending_receiver.h" namespace content { class RenderFrameHostImpl; // An implementation of InputInjector. class InputInjectorImpl : public mojom::InputInjector { … }; } // namespace content #endif // CONTENT_BROWSER_RENDERER_HOST_INPUT_INPUT_INJECTOR_IMPL_H_