// 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 CHROME_RENDERER_EXTENSIONS_API_ACCESSIBILITY_PRIVATE_HOOKS_DELEGATE_H_ #define CHROME_RENDERER_EXTENSIONS_API_ACCESSIBILITY_PRIVATE_HOOKS_DELEGATE_H_ #include "extensions/renderer/bindings/api_binding_hooks_delegate.h" #include "v8/include/v8.h" namespace extensions { class ScriptContext; // Custom native hooks for the accessibilityPrivate API. // Methods are implemented as handlers in the implementation file // e.g. Handle<FunctionName>. // Handlers are implemented for synchronous methods of the API. class AccessibilityPrivateHooksDelegate : public APIBindingHooksDelegate { … }; } // namespace extensions #endif // CHROME_RENDERER_EXTENSIONS_API_ACCESSIBILITY_PRIVATE_HOOKS_DELEGATE_H_