diff options
| author | 2024-05-14 11:12:25 -0700 | |
|---|---|---|
| committer | 2024-05-14 11:14:22 -0700 | |
| commit | 134c04db7eb04de2d37db16399e204b56fc64393 (patch) | |
| tree | b62f453d019fce79bed27676fb96241a205c1f3e | |
| parent | bebdf4e5796581f6a5fb39e0c8a0705c55ea08f2 (diff) | |
Remove ADISPLAY_ID_ definitions
These were replaced by LogicalDisplayId:: equivalents.
Bug: 339106983
Test: presubmit
Change-Id: Id4ed040c8e3a0d7fdfebbedfb1a7cafba592235d
| -rw-r--r-- | libs/ui/include/ui/LogicalDisplayId.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/libs/ui/include/ui/LogicalDisplayId.h b/libs/ui/include/ui/LogicalDisplayId.h index d745758f0c..fd84b12c22 100644 --- a/libs/ui/include/ui/LogicalDisplayId.h +++ b/libs/ui/include/ui/LogicalDisplayId.h @@ -43,13 +43,6 @@ struct LogicalDisplayId : ftl::Constructible<LogicalDisplayId, int32_t>, constexpr inline LogicalDisplayId LogicalDisplayId::INVALID{-1}; constexpr inline LogicalDisplayId LogicalDisplayId::DEFAULT{0}; -/** - * Deprecated! Use LogicalDisplayId::INVALID / LogicalDisplayId::DEFAULT instead. - * TODO(b/339106983): remove these. - */ -[[deprecated]] constexpr LogicalDisplayId ADISPLAY_ID_NONE{-1}; -[[deprecated]] constexpr LogicalDisplayId ADISPLAY_ID_DEFAULT{0}; - inline std::ostream& operator<<(std::ostream& stream, LogicalDisplayId displayId) { return stream << displayId.val(); } |