Moved onPause from WidevineSamplePlayer class to VideoPlayerView class.

BUG: 5561197

Change-Id: I0486c04094e3535106726ef9902814315dd07522
This commit is contained in:
Edwin Wong
2011-11-03 09:27:53 -07:00
parent 80daed61a5
commit 662dced941
2 changed files with 7 additions and 7 deletions

View File

@@ -9,7 +9,6 @@ import android.os.Bundle;
import android.widget.TabHost;
import android.content.Intent;
import android.content.SharedPreferences;
import android.util.Log;
public class WidevineSamplePlayer extends TabActivity {
@@ -83,10 +82,4 @@ public class WidevineSamplePlayer extends TabActivity {
// Commit the edits!
editor.commit();
}
@Override
protected void onPause() {
Log.v("WVSamplePlayer", "------------------- onPause ----------------");
onStop();
}
}