Commit e90d36cb by andrewlewis Committed by Oliver Woodman

Fix ImaAdsLoaderTest

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=213824217
parent a0ab9662
......@@ -15,6 +15,7 @@
*/
package com.google.android.exoplayer2.ext.ima;
import android.os.Looper;
import com.google.android.exoplayer2.C;
import com.google.android.exoplayer2.Player;
import com.google.android.exoplayer2.Timeline;
......@@ -111,6 +112,11 @@ import java.util.ArrayList;
// ExoPlayer methods. Other methods are unsupported.
@Override
public Looper getApplicationLooper() {
return Looper.getMainLooper();
}
@Override
public void addListener(Player.EventListener listener) {
listeners.add(listener);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment