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 #ifndef MEDIA_REMOTING_REMOTING_CONSTANTS_H_
6 #define MEDIA_REMOTING_REMOTING_CONSTANTS_H_
7 
8 namespace media {
9 namespace remoting {
10 
11 // The src attribute for remoting media should use the URL with this scheme.
12 // The URL format is "media-remoting:<id>", e.g. "media-remoting:test".
13 constexpr char kRemotingScheme[] = "media-remoting";
14 
15 }  // namespace remoting
16 }  // namespace media
17 
18 #endif  // MEDIA_REMOTING_REMOTING_CONSTANTS_H_
19