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

import androidx.appcompat.app.AppCompatActivity;

import android.view.Menu;

/**
 * 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(Menu menu) {
        // no-op
    }
}