Searched refs:mRecentChannels (Results 1 – 1 of 1) sorted by relevance
363 private final ArrayDeque<Long> mRecentChannels = new ArrayDeque<>(MAX_RECENT_CHANNELS); field in MainActivity1847 if (!mRecentChannels.remove(channelId)) { in addToRecentChannels()1848 if (mRecentChannels.size() >= MAX_RECENT_CHANNELS) { in addToRecentChannels()1849 mRecentChannels.removeLast(); in addToRecentChannels()1852 mRecentChannels.addFirst(channelId); in addToRecentChannels()1858 return mRecentChannels; in getRecentChannels()