summaryrefslogtreecommitdiffstats
path: root/chrome/test/android/cast_emulator/src/org/chromium/chrome/browser/media/remote/TestMediaRouteProviderService.java
blob: 2867ab9c4a9b15e16bdae67cf6c25a009d1169e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

package org.chromium.chrome.browser.media.remote;

import android.support.v7.media.MediaRouteProvider;
import android.support.v7.media.MediaRouteProviderService;

/**
 * Demonstrates how to register a custom media route provider service
 * using the support library.
 *
 * @see TestMediaRouteProvider
 */
public class TestMediaRouteProviderService extends MediaRouteProviderService {
    @Override
    public MediaRouteProvider onCreateMediaRouteProvider() {
        return new TestMediaRouteProvider(this);
    }
}