blob: 519d4c61bdeb2d319dcafe49125086e2f63bbd6d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
package de.danoeh.antennapod.activity;
import android.support.v7.app.AppCompatActivity;
/**
* Activity that allows for showing the MediaRouter button whenever there's a cast device in the
* network.
*/
public abstract class CastEnabledActivity extends AppCompatActivity {
public static final String TAG = "CastEnabledActivity";
public final void requestCastButton(int showAsAction) {
// no-op
}
}
|