forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathaccelerator_util.cc
43 lines (37 loc) · 1.59 KB
/
accelerator_util.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ui/content_accelerators/accelerator_util.h"
#include "build/build_config.h"
#include "build/chromeos_buildflags.h"
#include "third_party/blink/public/common/input/web_input_event.h"
#include "ui/base/ui_base_features.h"
#include "ui/events/blink/blink_event_util.h"
#include "ui/events/event.h"
#include "ui/events/event_constants.h"
namespace ui {
ui::Accelerator GetAcceleratorFromNativeWebKeyboardEvent(
const content::NativeWebKeyboardEvent& event) {
#if BUILDFLAG(IS_CHROMEOS_ASH)
if (::features::IsNewShortcutMappingEnabled() ||
::features::IsImprovedKeyboardShortcutsEnabled()) {
// TODO: This must be the same as below and it's simpler.
// Cleanup if this change sticks.
auto* os_event = static_cast<ui::KeyEvent*>(event.os_event);
// If there is no |os_event| fall through to the default code path.
// This can occur when keys are injected from dev tools.
if (os_event)
return ui::Accelerator(*os_event);
}
#endif
Accelerator::KeyState key_state =
event.GetType() == blink::WebInputEvent::Type::kKeyUp
? Accelerator::KeyState::RELEASED
: Accelerator::KeyState::PRESSED;
ui::KeyboardCode keyboard_code =
static_cast<ui::KeyboardCode>(event.windows_key_code);
int modifiers = WebEventModifiersToEventFlags(event.GetModifiers());
return ui::Accelerator(keyboard_code, modifiers, key_state,
event.TimeStamp());
}
} // namespace ui