1 // Copyright 2016 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.
4 
5 #ifndef CONTENT_COMMON_INPUT_INPUT_EVENT_DISPATCH_TYPE_H_
6 #define CONTENT_COMMON_INPUT_INPUT_EVENT_DISPATCH_TYPE_H_
7 
8 namespace content {
9 
10 enum InputEventDispatchType {
11   // Dispatch a blocking event. Sender is waiting on an ACK.
12   DISPATCH_TYPE_BLOCKING,
13   // Dispatch a non-blocking event. Sender will not receive an ACK.
14   DISPATCH_TYPE_NON_BLOCKING,
15   DISPATCH_TYPE_MAX = DISPATCH_TYPE_NON_BLOCKING
16 };
17 
18 }  // namespace content
19 
20 #endif  // CONTENT_COMMON_INPUT_INPUT_EVENT_DISPATCH_TYPE_H_
21