summaryrefslogtreecommitdiffstats
path: root/media/cast/cast_environment.cc
diff options
context:
space:
mode:
authorpwestin@google.com <pwestin@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2013-10-09 10:02:15 +0000
committerpwestin@google.com <pwestin@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2013-10-09 10:02:15 +0000
commitdec0b43f15e7486fed7a2720bdc0dad6e2cfaddc (patch)
tree1486b2998ecaddb6f767a9d43e26341a33ac93bc /media/cast/cast_environment.cc
parent1304307943923d398cc12375a1a66c13334d3b3c (diff)
downloadchromium_src-dec0b43f15e7486fed7a2720bdc0dad6e2cfaddc.zip
chromium_src-dec0b43f15e7486fed7a2720bdc0dad6e2cfaddc.tar.gz
chromium_src-dec0b43f15e7486fed7a2720bdc0dad6e2cfaddc.tar.bz2
Cleanup how we handle the fake clock.
BUG= Review URL: https://codereview.chromium.org/25124002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@227712 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'media/cast/cast_environment.cc')
-rw-r--r--media/cast/cast_environment.cc93
1 files changed, 93 insertions, 0 deletions
diff --git a/media/cast/cast_environment.cc b/media/cast/cast_environment.cc
new file mode 100644
index 0000000..dddec16
--- /dev/null
+++ b/media/cast/cast_environment.cc
@@ -0,0 +1,93 @@
+// Copyright 2013 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "media/cast/cast_environment.h"
+
+#include "base/logging.h"
+
+using base::TaskRunner;
+
+namespace media {
+namespace cast {
+
+CastEnvironment::CastEnvironment(
+ base::TickClock* clock,
+ scoped_refptr<TaskRunner> main_thread_proxy,
+ scoped_refptr<TaskRunner> audio_encode_thread_proxy,
+ scoped_refptr<TaskRunner> audio_decode_thread_proxy,
+ scoped_refptr<TaskRunner> video_encode_thread_proxy,
+ scoped_refptr<TaskRunner> video_decode_thread_proxy)
+ : clock_(clock),
+ main_thread_proxy_(main_thread_proxy),
+ audio_encode_thread_proxy_(audio_encode_thread_proxy),
+ audio_decode_thread_proxy_(audio_decode_thread_proxy),
+ video_encode_thread_proxy_(video_encode_thread_proxy),
+ video_decode_thread_proxy_(video_decode_thread_proxy) {
+ DCHECK(main_thread_proxy) << "Main thread required";
+}
+
+CastEnvironment::~CastEnvironment() {}
+
+bool CastEnvironment::PostTask(ThreadId identifier,
+ const tracked_objects::Location& from_here,
+ const base::Closure& task) {
+ scoped_refptr<TaskRunner> task_runner =
+ GetMessageTaskRunnerForThread(identifier);
+
+ return task_runner->PostTask(from_here, task);
+}
+
+bool CastEnvironment::PostDelayedTask(ThreadId identifier,
+ const tracked_objects::Location& from_here,
+ const base::Closure& task,
+ base::TimeDelta delay) {
+ scoped_refptr<TaskRunner> task_runner =
+ GetMessageTaskRunnerForThread(identifier);
+
+ return task_runner->PostDelayedTask(from_here, task, delay);
+}
+
+scoped_refptr<TaskRunner> CastEnvironment::GetMessageTaskRunnerForThread(
+ ThreadId identifier) {
+ switch (identifier) {
+ case CastEnvironment::MAIN:
+ return main_thread_proxy_;
+ case CastEnvironment::AUDIO_ENCODER:
+ return audio_encode_thread_proxy_;
+ case CastEnvironment::AUDIO_DECODER:
+ return audio_decode_thread_proxy_;
+ case CastEnvironment::VIDEO_ENCODER:
+ return video_encode_thread_proxy_;
+ case CastEnvironment::VIDEO_DECODER:
+ return video_decode_thread_proxy_;
+ default:
+ NOTREACHED() << "Invalid Thread ID.";
+ return NULL;
+ }
+}
+
+bool CastEnvironment::CurrentlyOn(ThreadId identifier) {
+ switch (identifier) {
+ case CastEnvironment::MAIN:
+ return main_thread_proxy_->RunsTasksOnCurrentThread();
+ case CastEnvironment::AUDIO_ENCODER:
+ return audio_encode_thread_proxy_->RunsTasksOnCurrentThread();
+ case CastEnvironment::AUDIO_DECODER:
+ return audio_decode_thread_proxy_->RunsTasksOnCurrentThread();
+ case CastEnvironment::VIDEO_ENCODER:
+ return video_encode_thread_proxy_->RunsTasksOnCurrentThread();
+ case CastEnvironment::VIDEO_DECODER:
+ return video_decode_thread_proxy_->RunsTasksOnCurrentThread();
+ default:
+ NOTREACHED() << "Wrong thread identifier";
+ return false;
+ }
+}
+
+base::TickClock* CastEnvironment::Clock() {
+ return clock_;
+}
+
+} // namespace cast
+} // namespace media