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