Ignore title parameter for navigator.registerProtocolHandler
[chromium-blink-merge.git] / media / cast / test / utility / default_config.h
blob59a24404ef56940c1f462933e845f728bd659174
1 // Copyright 2014 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.
5 #ifndef MEDIA_CAST_TEST_UTILITY_DEFAULT_CONFIG_H_
6 #define MEDIA_CAST_TEST_UTILITY_DEFAULT_CONFIG_H_
8 #include "media/cast/cast_config.h"
10 namespace media {
11 namespace cast {
13 // Returns an AudioReceiverConfig initialized to "good-to-go" values. This
14 // specifies 48 kHz, 2-channel Opus-coded audio, with standard ssrc's, payload
15 // type, and a dummy name.
16 AudioReceiverConfig GetDefaultAudioReceiverConfig();
18 // Returns a VideoReceiverConfig initialized to "good-to-go" values. This
19 // specifies VP8-coded video, with standard ssrc's, payload type, and a dummy
20 // name.
21 VideoReceiverConfig GetDefaultVideoReceiverConfig();
23 // Returns a callback that does nothing.
24 CreateVideoEncodeAcceleratorCallback
25 CreateDefaultVideoEncodeAcceleratorCallback();
27 // Returns a callback that does nothing.
28 CreateVideoEncodeMemoryCallback CreateDefaultVideoEncodeMemoryCallback();
30 } // namespace cast
31 } // namespace media
33 #endif // MEDIA_CAST_TEST_UTILITY_DEFAULT_CONFIG_H_