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.
17 // This mirrors ui::EventFlags
18 // TODO(morrita): Use shift operator once it is available.
25 LEFT_MOUSE_BUTTON = 16,
26 MIDDLE_MOUSE_BUTTON = 32,
27 RIGHT_MOUSE_BUTTON = 64,
35 enum MouseEventFlags {
36 IS_DOUBLE_CLICK = 65536,
37 IS_TRIPLE_CLICK = 131072,
38 IS_NON_CLIENT = 262144,
40 // TODO(erg): Move accessibility flags and maybe synthetic touch events here.