Home
last modified time | relevance | path

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

/packages/apps/TV/src/com/android/tv/
DMainActivity.java325 private final ArrayDeque<Long> mRecentChannels = new ArrayDeque<>(MAX_RECENT_CHANNELS); field in MainActivity
1995 if (!mRecentChannels.remove(channelId)) {
1996 if (mRecentChannels.size() >= MAX_RECENT_CHANNELS) {
1997 mRecentChannels.removeLast();
2000 mRecentChannels.addFirst(channelId);
2008 return mRecentChannels;