1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "components/window_manager/window_manager_app.h"
7 namespace window_manager
{
9 ui::Accelerator
WindowManagerApp::ConvertEventToAccelerator(
10 const ui::KeyEvent
* event
) {
11 return ui::Accelerator(event
->key_code(), event
->flags());
14 } // namespace window_manager