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