diff options
author | Mathias Agopian <mathias@google.com> | 2012-09-20 23:24:19 -0700 |
---|---|---|
committer | Mathias Agopian <mathias@google.com> | 2012-09-21 14:20:35 -0700 |
commit | ff28e201ec0c6d620eaaa29814ab52958487dc31 (patch) | |
tree | 2d5a08044a7fa4ec5abd42a1aff105afb55f6fb1 /include/gui | |
parent | b4d18ed34e3513f3a14ea0876c7e330bee72a529 (diff) | |
download | frameworks_native-ff28e201ec0c6d620eaaa29814ab52958487dc31.zip frameworks_native-ff28e201ec0c6d620eaaa29814ab52958487dc31.tar.gz frameworks_native-ff28e201ec0c6d620eaaa29814ab52958487dc31.tar.bz2 |
Display events now always carry the display id they happened on
Change-Id: I12de1d883c23927722bc3a71b782f0079de4e831
Diffstat (limited to 'include/gui')
-rw-r--r-- | include/gui/DisplayEventReceiver.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/gui/DisplayEventReceiver.h b/include/gui/DisplayEventReceiver.h index 1117f95..f8267bf 100644 --- a/include/gui/DisplayEventReceiver.h +++ b/include/gui/DisplayEventReceiver.h @@ -48,6 +48,7 @@ public: struct Header { uint32_t type; + uint32_t id; nsecs_t timestamp; }; @@ -56,7 +57,6 @@ public: }; struct Hotplug { - int32_t id; bool connected; }; |