Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1604)

Unified Diff: content/common/input/input_event_dispatch_type.h

Issue 1631963002: Plumb firing passive event listeners. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master_wheel_passive_listeners_2a
Patch Set: Fix creis's comments Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/common/input/input_event_ack_state.h ('k') | content/common/input/web_input_event_queue.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..e4acb4c1cee93f8760d801ae2dc684fcf4b43a9d
--- /dev/null
+++ b/content/common/input/input_event_dispatch_type.h
@@ -0,0 +1,18 @@
+// 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.
+ DISPATCH_TYPE_MAX = DISPATCH_TYPE_NON_BLOCKING
+};
+
+} // namespace content
+
+#endif // CONTENT_COMMON_INPUT_INPUT_EVENT_DISPATCH_TYPE_H_
« no previous file with comments | « content/common/input/input_event_ack_state.h ('k') | content/common/input/web_input_event_queue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698