| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2016 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 MediaStreamTrackContentHint_h |
| 6 #define MediaStreamTrackContentHint_h |
| 7 |
| 8 #include "modules/mediastream/MediaStreamTrack.h" |
| 9 |
| 10 namespace blink { |
| 11 |
| 12 class MediaStreamTrackContentHint final { |
| 13 public: |
| 14 static String contentHint(const MediaStreamTrack& track) { |
| 15 return track.contentHint(); |
| 16 } |
| 17 static void setContentHint(MediaStreamTrack& track, const String& hint) { |
| 18 track.setContentHint(hint); |
| 19 } |
| 20 }; |
| 21 |
| 22 } // namespace blink |
| 23 |
| 24 #endif // MediaStreamTrack_h |
| OLD | NEW |