Home
last modified time | relevance | path

Searched refs:mRecentChannels (Results 1 – 1 of 1) sorted by relevance

/aosp12/packages/apps/TV/src/com/android/tv/
H A DMainActivity.java364 private final ArrayDeque<Long> mRecentChannels = new ArrayDeque<>(MAX_RECENT_CHANNELS); field in MainActivity
1852 if (!mRecentChannels.remove(channelId)) { in addToRecentChannels()
1853 if (mRecentChannels.size() >= MAX_RECENT_CHANNELS) { in addToRecentChannels()
1854 mRecentChannels.removeLast(); in addToRecentChannels()
1857 mRecentChannels.addFirst(channelId); in addToRecentChannels()
1863 return mRecentChannels; in getRecentChannels()