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

Side by Side Diff: media/cast/test/skewed_single_thread_task_runner.h

Issue 2122543002: Replace Closure in TaskRunner::PostTask with OneShotCallback (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@07_oneshot
Patch Set: fix Created 4 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 #ifndef MEDIA_CAST_TEST_SKEWED_SINGLE_THREAD_TASK_RUNNER_H_ 5 #ifndef MEDIA_CAST_TEST_SKEWED_SINGLE_THREAD_TASK_RUNNER_H_
6 #define MEDIA_CAST_TEST_SKEWED_SINGLE_THREAD_TASK_RUNNER_H_ 6 #define MEDIA_CAST_TEST_SKEWED_SINGLE_THREAD_TASK_RUNNER_H_
7 7
8 #include <map> 8 #include <map>
9 9
10 #include "base/macros.h" 10 #include "base/macros.h"
(...skipping 12 matching lines...) Expand all
23 class SkewedSingleThreadTaskRunner : public base::SingleThreadTaskRunner { 23 class SkewedSingleThreadTaskRunner : public base::SingleThreadTaskRunner {
24 public: 24 public:
25 explicit SkewedSingleThreadTaskRunner( 25 explicit SkewedSingleThreadTaskRunner(
26 const scoped_refptr<base::SingleThreadTaskRunner>& task_runner); 26 const scoped_refptr<base::SingleThreadTaskRunner>& task_runner);
27 27
28 // Set the delay multiplier to |skew|. 28 // Set the delay multiplier to |skew|.
29 void SetSkew(double skew); 29 void SetSkew(double skew);
30 30
31 // base::SingleThreadTaskRunner implementation. 31 // base::SingleThreadTaskRunner implementation.
32 bool PostDelayedTask(const tracked_objects::Location& from_here, 32 bool PostDelayedTask(const tracked_objects::Location& from_here,
33 const base::Closure& task, 33 base::OnceClosure task,
34 base::TimeDelta delay) final; 34 base::TimeDelta delay) final;
35 35
36 bool RunsTasksOnCurrentThread() const final; 36 bool RunsTasksOnCurrentThread() const final;
37 37
38 // This function is currently not used, and will return false. 38 // This function is currently not used, and will return false.
39 bool PostNonNestableDelayedTask(const tracked_objects::Location& from_here, 39 bool PostNonNestableDelayedTask(const tracked_objects::Location& from_here,
40 const base::Closure& task, 40 base::OnceClosure task,
41 base::TimeDelta delay) final; 41 base::TimeDelta delay) final;
42 42
43 protected: 43 protected:
44 ~SkewedSingleThreadTaskRunner() final; 44 ~SkewedSingleThreadTaskRunner() final;
45 45
46 private: 46 private:
47 double skew_; 47 double skew_;
48 scoped_refptr<base::SingleThreadTaskRunner> task_runner_; 48 scoped_refptr<base::SingleThreadTaskRunner> task_runner_;
49 49
50 DISALLOW_COPY_AND_ASSIGN(SkewedSingleThreadTaskRunner); 50 DISALLOW_COPY_AND_ASSIGN(SkewedSingleThreadTaskRunner);
51 }; 51 };
52 52
53 } // namespace test 53 } // namespace test
54 } // namespace cast 54 } // namespace cast
55 } // namespace media 55 } // namespace media
56 56
57 #endif // MEDIA_CAST_TEST_SKEWED_SINGLE_THREAD_TASK_RUNNER_H_ 57 #endif // MEDIA_CAST_TEST_SKEWED_SINGLE_THREAD_TASK_RUNNER_H_
OLDNEW
« no previous file with comments | « media/base/fake_single_thread_task_runner.cc ('k') | media/cast/test/skewed_single_thread_task_runner.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698