Roll src/third_party/WebKit 318ad17:e6ddb0d (svn 202527:202532)
[chromium-blink-merge.git] / ash / sticky_keys / sticky_keys_state.h
blob97e99d8dde9d91219470e4f3b10c2979274877ff
1 // Copyright 2014 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 #ifndef ASH_STICKY_KEYS_STICKY_KEYS_STATE_H_
6 #define ASH_STICKY_KEYS_STICKY_KEYS_STATE_H_
8 namespace ash {
10 // State of an individual modifier key.
11 enum StickyKeyState {
12 // The sticky key is disabled. Incoming non-modifier key events are not
13 // affected.
14 STICKY_KEY_STATE_DISABLED,
15 // The sticky key is enabled. Incoming non-modifier key down events are
16 // modified. After that, sticky key state becomes DISABLED.
17 STICKY_KEY_STATE_ENABLED,
18 // The sticky key is locked. All incoming non modifier key down events are
19 // modified.
20 STICKY_KEY_STATE_LOCKED,
23 } // namespace ash
25 #endif // ASH_STICKY_KEYS_STICKY_KEYS_STATE_H_