// 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. #include "ui/aura/scoped_keyboard_hook.h" #include "ui/aura/window_tree_host.h" #include "ui/events/keycodes/dom/dom_code.h" namespace aura { ScopedKeyboardHook::ScopedKeyboardHook() = default; ScopedKeyboardHook::ScopedKeyboardHook( base::WeakPtr<WindowTreeHost> window_tree_host) : … { … } ScopedKeyboardHook::~ScopedKeyboardHook() { … } bool ScopedKeyboardHook::IsKeyLocked(ui::DomCode dom_code) { … } } // namespace aura