| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "extensions/renderer/api/display_source/wifi_display/wifi_display_media
_manager.h" | 5 #include "extensions/renderer/api/display_source/wifi_display/wifi_display_media
_manager.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "base/rand_util.h" | 8 #include "base/rand_util.h" |
| 9 #include "content/public/renderer/media_stream_api.h" | 9 #include "content/public/renderer/media_stream_utils.h" |
| 10 | 10 |
| 11 namespace extensions { | 11 namespace extensions { |
| 12 | 12 |
| 13 namespace { | 13 namespace { |
| 14 | 14 |
| 15 const char kErrorNoVideoFormatData[] = | 15 const char kErrorNoVideoFormatData[] = |
| 16 "Failed to get video format data from the given MediaStreamTrack object"; | 16 "Failed to get video format data from the given MediaStreamTrack object"; |
| 17 const char kErrorSinkCannotPlayVideo[] = | 17 const char kErrorSinkCannotPlayVideo[] = |
| 18 "The sink cannot play video from the given MediaStreamTrack object"; | 18 "The sink cannot play video from the given MediaStreamTrack object"; |
| 19 | 19 |
| (...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 224 NOTIMPLEMENTED(); | 224 NOTIMPLEMENTED(); |
| 225 return false; | 225 return false; |
| 226 } | 226 } |
| 227 | 227 |
| 228 wds::AudioCodec WiFiDisplayMediaManager::GetOptimalAudioFormat() const { | 228 wds::AudioCodec WiFiDisplayMediaManager::GetOptimalAudioFormat() const { |
| 229 NOTIMPLEMENTED(); | 229 NOTIMPLEMENTED(); |
| 230 return wds::AudioCodec(); | 230 return wds::AudioCodec(); |
| 231 } | 231 } |
| 232 | 232 |
| 233 } // namespace extensions | 233 } // namespace extensions |
| OLD | NEW |