// Copyright 2016 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/events/test/keyboard_layout.h" #include "base/check_op.h" #include "base/notreached.h" #include "build/build_config.h" #if BUILDFLAG(IS_OZONE) #include "ui/events/ozone/layout/stub/stub_keyboard_layout_engine.h" // nogncheck #endif namespace ui { ScopedKeyboardLayout::ScopedKeyboardLayout(KeyboardLayout layout) { … } ScopedKeyboardLayout::~ScopedKeyboardLayout() { … } } // namespace ui