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

Unified Diff: media/cast/test/skewed_single_thread_task_runner.cc

Issue 289083002: Cast: Add tests for clocks being slow/fast (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 6 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « media/cast/test/skewed_single_thread_task_runner.h ('k') | media/cast/test/skewed_tick_clock.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/cast/test/skewed_single_thread_task_runner.cc
diff --git a/media/cast/test/skewed_single_thread_task_runner.cc b/media/cast/test/skewed_single_thread_task_runner.cc
new file mode 100644
index 0000000000000000000000000000000000000000..fda7dfbfcad16575447c6975538d76c5915e8281
--- /dev/null
+++ b/media/cast/test/skewed_single_thread_task_runner.cc
@@ -0,0 +1,53 @@
+// Copyright 2014 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/test/skewed_single_thread_task_runner.h"
+
+#include "base/logging.h"
+#include "base/time/tick_clock.h"
+#include "testing/gtest/include/gtest/gtest.h"
+
+namespace media {
+namespace cast {
+namespace test {
+
+SkewedSingleThreadTaskRunner::SkewedSingleThreadTaskRunner(
+ const scoped_refptr<base::SingleThreadTaskRunner>& task_runner) :
+ skew_(1.0),
+ task_runner_(task_runner) {
+}
+
+SkewedSingleThreadTaskRunner::~SkewedSingleThreadTaskRunner() {}
+
+void SkewedSingleThreadTaskRunner::SetSkew(double skew) {
+ skew_ = skew;
+}
+
+bool SkewedSingleThreadTaskRunner::PostDelayedTask(
+ const tracked_objects::Location& from_here,
+ const base::Closure& task,
+ base::TimeDelta delay) {
+ return task_runner_->PostDelayedTask(
+ from_here,
+ task,
+ base::TimeDelta::FromMicroseconds(delay.InMicroseconds() * skew_));
+}
+
+bool SkewedSingleThreadTaskRunner::RunsTasksOnCurrentThread() const {
+ return task_runner_->RunsTasksOnCurrentThread();
+}
+
+bool SkewedSingleThreadTaskRunner::PostNonNestableDelayedTask(
+ const tracked_objects::Location& from_here,
+ const base::Closure& task,
+ base::TimeDelta delay) {
+ return task_runner_->PostNonNestableDelayedTask(
+ from_here,
+ task,
+ base::TimeDelta::FromMicroseconds(delay.InMicroseconds() * skew_));
+}
+
+} // namespace test
+} // namespace cast
+} // namespace media
« no previous file with comments | « media/cast/test/skewed_single_thread_task_runner.h ('k') | media/cast/test/skewed_tick_clock.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698