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

Side by Side Diff: chromecast/media/base/cast_media_default.cc

Issue 1875623002: Convert //chromecast from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 "base/memory/scoped_ptr.h" 5 #include <memory>
6 #include "build/build_config.h" 6
7 #include "base/single_thread_task_runner.h" 7 #include "base/single_thread_task_runner.h"
8 #include "base/thread_task_runner_handle.h" 8 #include "base/thread_task_runner_handle.h"
9 #include "build/build_config.h"
9 #include "chromecast/base/task_runner_impl.h" 10 #include "chromecast/base/task_runner_impl.h"
10 #include "chromecast/media/cma/backend/media_pipeline_backend_default.h" 11 #include "chromecast/media/cma/backend/media_pipeline_backend_default.h"
11 #include "chromecast/public/cast_media_shlib.h" 12 #include "chromecast/public/cast_media_shlib.h"
12 #include "chromecast/public/graphics_types.h" 13 #include "chromecast/public/graphics_types.h"
13 #include "chromecast/public/media/media_pipeline_device_params.h" 14 #include "chromecast/public/media/media_pipeline_device_params.h"
14 #include "chromecast/public/media_codec_support_shlib.h" 15 #include "chromecast/public/media_codec_support_shlib.h"
15 #include "chromecast/public/video_plane.h" 16 #include "chromecast/public/video_plane.h"
16 17
17 namespace chromecast { 18 namespace chromecast {
18 namespace media { 19 namespace media {
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 bool CastMediaShlib::SetMediaClockRate(double new_rate) { 100 bool CastMediaShlib::SetMediaClockRate(double new_rate) {
100 return false; 101 return false;
101 } 102 }
102 103
103 bool CastMediaShlib::SupportsMediaClockRateChange() { 104 bool CastMediaShlib::SupportsMediaClockRateChange() {
104 return false; 105 return false;
105 } 106 }
106 107
107 } // namespace media 108 } // namespace media
108 } // namespace chromecast 109 } // namespace chromecast
OLDNEW
« no previous file with comments | « chromecast/media/audio/cast_audio_output_stream_unittest.cc ('k') | chromecast/media/base/media_message_loop.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698