am 72e42791: am 080563ad: When pausing, also cancel the in-progress fade in if there was one. b/3209106

* commit '72e42791d602ad5f5923ba6bed30b9dac9fe07e8':
  When pausing, also cancel the in-progress fade in if there was one. b/3209106
diff --git a/src/com/android/music/MediaPlaybackService.java b/src/com/android/music/MediaPlaybackService.java
index e033b80..608b3ff 100644
--- a/src/com/android/music/MediaPlaybackService.java
+++ b/src/com/android/music/MediaPlaybackService.java
@@ -1142,6 +1142,7 @@
     public void pause() {
         synchronized(this) {
             if (isPlaying()) {
+                mMediaplayerHandler.removeMessages(FADEIN);
                 mPlayer.pause();
                 gotoIdleState();
                 mIsSupposedToBePlaying = false;