summaryrefslogtreecommitdiff
path: root/app/src/free/java/de/danoeh/antennapod/activity/CastEnabledActivity.java
blob: aff1d6ea44c063483f5e718cceb08710c01f375a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package de.danoeh.antennapod.activity;

import androidx.appcompat.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
    }
}