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

Side by Side Diff: content/shell/renderer/layout_test/test_video_frame_provider.cc

Issue 1159623009: content: Remove use of MessageLoopProxy and deprecated MessageLoop APIs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Test build fix. Created 5 years, 6 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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/shell/renderer/layout_test/test_video_frame_provider.h" 5 #include "content/shell/renderer/layout_test/test_video_frame_provider.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/location.h" 8 #include "base/location.h"
9 #include "base/message_loop/message_loop_proxy.h" 9 #include "base/single_thread_task_runner.h"
10 #include "base/thread_task_runner_handle.h"
10 #include "media/base/video_frame.h" 11 #include "media/base/video_frame.h"
11 12
12 namespace content { 13 namespace content {
13 14
14 TestVideoFrameProvider::TestVideoFrameProvider( 15 TestVideoFrameProvider::TestVideoFrameProvider(
15 const gfx::Size& size, 16 const gfx::Size& size,
16 const base::TimeDelta& frame_duration, 17 const base::TimeDelta& frame_duration,
17 const base::Closure& error_cb, 18 const base::Closure& error_cb,
18 const VideoFrameProvider::RepaintCB& repaint_cb) 19 const VideoFrameProvider::RepaintCB& repaint_cb)
19 : message_loop_proxy_(base::MessageLoopProxy::current()), 20 : task_runner_(base::ThreadTaskRunnerHandle::Get()),
20 size_(size), 21 size_(size),
21 state_(kStopped), 22 state_(kStopped),
22 frame_duration_(frame_duration), 23 frame_duration_(frame_duration),
23 error_cb_(error_cb), 24 error_cb_(error_cb),
24 repaint_cb_(repaint_cb) { 25 repaint_cb_(repaint_cb) {
25 } 26 }
26 27
27 TestVideoFrameProvider::~TestVideoFrameProvider() {} 28 TestVideoFrameProvider::~TestVideoFrameProvider() {}
28 29
29 void TestVideoFrameProvider::Start() { 30 void TestVideoFrameProvider::Start() {
30 DVLOG(1) << "TestVideoFrameProvider::Start"; 31 DVLOG(1) << "TestVideoFrameProvider::Start";
31 DCHECK(message_loop_proxy_->BelongsToCurrentThread()); 32 DCHECK(task_runner_->BelongsToCurrentThread());
32 state_ = kStarted; 33 state_ = kStarted;
33 message_loop_proxy_->PostTask( 34 task_runner_->PostTask(
34 FROM_HERE, 35 FROM_HERE, base::Bind(&TestVideoFrameProvider::GenerateFrame, this));
35 base::Bind(&TestVideoFrameProvider::GenerateFrame, this));
36 } 36 }
37 37
38 void TestVideoFrameProvider::Stop() { 38 void TestVideoFrameProvider::Stop() {
39 DVLOG(1) << "TestVideoFrameProvider::Stop"; 39 DVLOG(1) << "TestVideoFrameProvider::Stop";
40 DCHECK(message_loop_proxy_->BelongsToCurrentThread()); 40 DCHECK(task_runner_->BelongsToCurrentThread());
41 state_ = kStopped; 41 state_ = kStopped;
42 } 42 }
43 43
44 void TestVideoFrameProvider::Play() { 44 void TestVideoFrameProvider::Play() {
45 DVLOG(1) << "TestVideoFrameProvider::Play"; 45 DVLOG(1) << "TestVideoFrameProvider::Play";
46 DCHECK(message_loop_proxy_->BelongsToCurrentThread()); 46 DCHECK(task_runner_->BelongsToCurrentThread());
47 if (state_ == kPaused) 47 if (state_ == kPaused)
48 state_ = kStarted; 48 state_ = kStarted;
49 } 49 }
50 50
51 void TestVideoFrameProvider::Pause() { 51 void TestVideoFrameProvider::Pause() {
52 DVLOG(1) << "TestVideoFrameProvider::Pause"; 52 DVLOG(1) << "TestVideoFrameProvider::Pause";
53 DCHECK(message_loop_proxy_->BelongsToCurrentThread()); 53 DCHECK(task_runner_->BelongsToCurrentThread());
54 if (state_ == kStarted) 54 if (state_ == kStarted)
55 state_ = kPaused; 55 state_ = kPaused;
56 } 56 }
57 57
58 void TestVideoFrameProvider::GenerateFrame() { 58 void TestVideoFrameProvider::GenerateFrame() {
59 DVLOG(1) << "TestVideoFrameProvider::GenerateFrame"; 59 DVLOG(1) << "TestVideoFrameProvider::GenerateFrame";
60 DCHECK(message_loop_proxy_->BelongsToCurrentThread()); 60 DCHECK(task_runner_->BelongsToCurrentThread());
61 if (state_ == kStopped) 61 if (state_ == kStopped)
62 return; 62 return;
63 63
64 if (state_ == kStarted) { 64 if (state_ == kStarted) {
65 // Always allocate a new frame filled with white color. 65 // Always allocate a new frame filled with white color.
66 scoped_refptr<media::VideoFrame> video_frame = 66 scoped_refptr<media::VideoFrame> video_frame =
67 media::VideoFrame::CreateColorFrame( 67 media::VideoFrame::CreateColorFrame(
68 size_, 255, 128, 128, current_time_); 68 size_, 255, 128, 128, current_time_);
69 69
70 // TODO(wjia): set pixel data to pre-defined patterns if it's desired to 70 // TODO(wjia): set pixel data to pre-defined patterns if it's desired to
71 // verify frame content. 71 // verify frame content.
72 72
73 repaint_cb_.Run(video_frame); 73 repaint_cb_.Run(video_frame);
74 } 74 }
75 75
76 current_time_ += frame_duration_; 76 current_time_ += frame_duration_;
77 message_loop_proxy_->PostDelayedTask( 77 task_runner_->PostDelayedTask(
78 FROM_HERE, 78 FROM_HERE, base::Bind(&TestVideoFrameProvider::GenerateFrame, this),
79 base::Bind(&TestVideoFrameProvider::GenerateFrame, this),
80 frame_duration_); 79 frame_duration_);
81 } 80 }
82 81
83 } // namespace content 82 } // namespace content
OLDNEW
« no previous file with comments | « content/shell/renderer/layout_test/test_video_frame_provider.h ('k') | content/test/content_browser_test_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698