// Copyright 2018 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef UI_EVENTS_KEYBOARD_HOOK_BASE_H_ #define UI_EVENTS_KEYBOARD_HOOK_BASE_H_ #include "ui/events/keyboard_hook.h" namespace ui { enum class DomCode : uint32_t; class KeyEvent; class KeyboardHookBase : public KeyboardHook { … }; } // namespace ui #endif // UI_EVENTS_KEYBOARD_HOOK_BASE_H_