Searched refs:mRecentChannels (Results 1 – 1 of 1) sorted by relevance
375 private final ArrayDeque<Long> mRecentChannels = new ArrayDeque<>(MAX_RECENT_CHANNELS); field in MainActivity1903 if (!mRecentChannels.remove(channelId)) { in addToRecentChannels()1904 if (mRecentChannels.size() >= MAX_RECENT_CHANNELS) { in addToRecentChannels()1905 mRecentChannels.removeLast(); in addToRecentChannels()1908 mRecentChannels.addFirst(channelId); in addToRecentChannels()1914 return mRecentChannels; in getRecentChannels()