1 // Copyright 2020 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 package org.chromium.weblayer_private.interfaces;
6 
7 /** Keys for remote media service intent extras. */
8 public interface RemoteMediaServiceConstants {
9     // Used as a key in the client's AndroidManifest.xml to enable remote media playback, i.e.
10     // Presentation API, Remote Playback API, and Media Fling (automatic casting of html5 videos).
11     String FEATURE_ENABLED_KEY = "org.chromium.weblayer.ENABLE_REMOTE_MEDIA";
12 
13     // Used internally by WebLayer as a key to the various values of remote media service
14     // notification IDs.
15     String NOTIFICATION_ID_KEY = "REMOTE_MEDIA_SERVICE_NOTIFICATION_ID_KEY";
16 }
17