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

Unified Diff: mojo/services/public/interfaces/input_events/input_events.mojom

Issue 472083003: Mojom cpp bindings: Enable non-nullable check. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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
Index: mojo/services/public/interfaces/input_events/input_events.mojom
diff --git a/mojo/services/public/interfaces/input_events/input_events.mojom b/mojo/services/public/interfaces/input_events/input_events.mojom
index 27e03abb91d123fe8a2e8aab5373c9c44aa076e2..368292e0cda63999e59d008a256978f58f5c5c43 100644
--- a/mojo/services/public/interfaces/input_events/input_events.mojom
+++ b/mojo/services/public/interfaces/input_events/input_events.mojom
@@ -30,10 +30,10 @@ struct Event {
EventType action;
EventFlags flags;
int64 time_stamp;
- LocationData location_data;
- KeyData key_data;
- TouchData touch_data;
- MouseWheelData wheel_data;
+ LocationData? location_data;
+ KeyData? key_data;
+ TouchData? touch_data;
+ MouseWheelData? wheel_data;
};
}

Powered by Google App Engine
This is Rietveld 408576698