@Override
 public void onTaskDataLoaded() {
   if (mThumbnailView != null && mHeaderView != null) {
     // Bind each of the views to the new task data
     mThumbnailView.rebindToTask(mTask);
     mHeaderView.rebindToTask(mTask);
     // Rebind any listeners
     mHeaderView.mApplicationIcon.setOnClickListener(this);
     mHeaderView.mDismissButton.setOnClickListener(this);
     mActionButtonView.setOnClickListener(this);
     if (Constants.DebugFlags.App.EnableDevAppInfoOnLongPress) {
       if (mConfig.developerOptionsEnabled) {
         mHeaderView.mApplicationIcon.setOnLongClickListener(this);
       }
     }
   }
   mTaskDataLoaded = true;
 }