Index: content/common/input/input_event_dispatch_type.h |
diff --git a/content/common/input/input_event_dispatch_type.h b/content/common/input/input_event_dispatch_type.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..b8c93934d7cebaad41d98b4acae5cf73fb2a2d12 |
--- /dev/null |
+++ b/content/common/input/input_event_dispatch_type.h |
@@ -0,0 +1,17 @@ |
+// Copyright 2016 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. |
+ |
+#ifndef CONTENT_COMMON_INPUT_INPUT_EVENT_DISPATCH_TYPE_H_ |
+#define CONTENT_COMMON_INPUT_INPUT_EVENT_DISPATCH_TYPE_H_ |
+ |
+namespace content { |
+ |
+enum InputEventDispatchType { |
+ DISPATCH_TYPE_NORMAL, // Dispatch a normal event. |
+ DISPATCH_TYPE_NON_BLOCKING, // Dispatch a non-blocking event. |
+}; |
+ |
+} // namespace content |
+ |
+#endif // CONTENT_COMMON_INPUT_INPUT_EVENT_DISPATCH_TYPE_H_ |