/**
  * Sets the persistent expanded/collapsed state of the recently closed tabs list.
  *
  * @param isCollapsed Whether the recently closed tabs list is collapsed.
  */
 public void setRecentlyClosedTabsCollapsed(boolean isCollapsed) {
   if (mIsDestroyed) return;
   mNewTabPagePrefs.setRecentlyClosedTabsCollapsed(isCollapsed);
 }