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

Side by Side Diff: content/public/renderer/video_encode_accelerator.cc

Issue 504273002: Remove implicit conversions from scoped_refptr to T* in content/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 "content/public/renderer/video_encode_accelerator.h" 5 #include "content/public/renderer/video_encode_accelerator.h"
6 6
7 #include "base/task_runner_util.h" 7 #include "base/task_runner_util.h"
8 #include "content/common/gpu/client/gpu_video_encode_accelerator_host.h" 8 #include "content/common/gpu/client/gpu_video_encode_accelerator_host.h"
9 #include "content/renderer/render_thread_impl.h" 9 #include "content/renderer/render_thread_impl.h"
10 #include "media/filters/gpu_video_accelerator_factories.h" 10 #include "media/filters/gpu_video_accelerator_factories.h"
11 11
12 namespace content { 12 namespace content {
13 13
14 void CreateVideoEncodeAccelerator( 14 void CreateVideoEncodeAccelerator(
15 const OnCreateVideoEncodeAcceleratorCallback& callback) { 15 const OnCreateVideoEncodeAcceleratorCallback& callback) {
16 DCHECK(!callback.is_null()); 16 DCHECK(!callback.is_null());
17 17
18 scoped_refptr<media::GpuVideoAcceleratorFactories> gpu_factories = 18 scoped_refptr<media::GpuVideoAcceleratorFactories> gpu_factories =
19 RenderThreadImpl::current()->GetGpuFactories(); 19 RenderThreadImpl::current()->GetGpuFactories();
20 if (!gpu_factories.get()) { 20 if (!gpu_factories.get()) {
21 callback.Run(NULL, scoped_ptr<media::VideoEncodeAccelerator>()); 21 callback.Run(NULL, scoped_ptr<media::VideoEncodeAccelerator>());
22 return; 22 return;
23 } 23 }
24 24
25 scoped_refptr<base::SingleThreadTaskRunner> encode_task_runner = 25 scoped_refptr<base::SingleThreadTaskRunner> encode_task_runner =
26 gpu_factories->GetTaskRunner(); 26 gpu_factories->GetTaskRunner();
27 base::PostTaskAndReplyWithResult( 27 base::PostTaskAndReplyWithResult(
28 encode_task_runner, 28 encode_task_runner.get(),
29 FROM_HERE, 29 FROM_HERE,
30 base::Bind( 30 base::Bind(
31 &media::GpuVideoAcceleratorFactories::CreateVideoEncodeAccelerator, 31 &media::GpuVideoAcceleratorFactories::CreateVideoEncodeAccelerator,
32 gpu_factories), 32 gpu_factories),
33 base::Bind(callback, encode_task_runner)); 33 base::Bind(callback, encode_task_runner));
34 } 34 }
35 35
36 std::vector<media::VideoEncodeAccelerator::SupportedProfile> 36 std::vector<media::VideoEncodeAccelerator::SupportedProfile>
37 GetSupportedVideoEncodeAcceleratorProfiles() { 37 GetSupportedVideoEncodeAcceleratorProfiles() {
38 return GpuVideoEncodeAcceleratorHost::GetSupportedProfiles(); 38 return GpuVideoEncodeAcceleratorHost::GetSupportedProfiles();
39 } 39 }
40 40
41 } // namespace content 41 } // namespace content
OLDNEW
« no previous file with comments | « content/public/browser/browser_message_filter.cc ('k') | content/public/test/browser_test_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698