Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(66)

Side by Side Diff: extensions/renderer/api/display_source/wifi_display/wifi_display_media_manager.cc

Issue 1773273007: Cleanup: media_stream_api.* ==> media_stream_utils.* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: +headers in blink_test_runner.cc Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « content/shell/renderer/layout_test/blink_test_runner.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « content/shell/renderer/layout_test/blink_test_runner.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698