/**
  * Go back or forward the number of steps given.
  *
  * @param steps A negative or positive number indicating the direction and number of steps to
  *     move.
  */
 public void goBackOrForward(int steps) {
   mLoadInitFromJava = true;
   nativeGoBackOrForward(steps);
   mLoadInitFromJava = false;
 }