commit | 921b277efd685d861da470d08f0d42c04acdb1a0 | [log] [tgz] |
---|---|---|
author | Alec Mouri <alecmouri@google.com> | Wed Feb 05 19:03:28 2020 -0800 |
committer | Alec Mouri <alecmouri@google.com> | Wed Feb 05 19:07:14 2020 -0800 |
tree | e70cd2ca5a74219064c229f903de68d555a43f5a | |
parent | 5a377dd1be593ba62381f5509aba3564d7ef0797 [diff] [blame] |
[AChoreographer] Add const qualifiers for getFd(). Per API feedback the AChoreographer argument should be const. Bug: 148954590 Test: builds Change-Id: Ie95481992534b3f5f5c664709bff80b1c21f7d50
diff --git a/libs/gui/DisplayEventDispatcher.cpp b/libs/gui/DisplayEventDispatcher.cpp index 8af1a1c..15f966d 100644 --- a/libs/gui/DisplayEventDispatcher.cpp +++ b/libs/gui/DisplayEventDispatcher.cpp
@@ -104,7 +104,7 @@ mConfigChangeFlag = configChangeFlag; } -int DisplayEventDispatcher::getFd() { +int DisplayEventDispatcher::getFd() const { return mReceiver.getFd(); }