// 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 EXTENSIONS_RENDERER_EXTENSION_INTERACTION_PROVIDER_H_ #define EXTENSIONS_RENDERER_EXTENSION_INTERACTION_PROVIDER_H_ #include "extensions/renderer/bindings/interaction_provider.h" #include "v8/include/v8-forward.h" namespace extensions { // Provides user interaction related utilities specific to extensions system, // works for both RenderFrame based and Service Worker based extensions. class ExtensionInteractionProvider : public InteractionProvider { … }; } // namespace extensions #endif // EXTENSIONS_RENDERER_EXTENSION_INTERACTION_PROVIDER_H_