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

Side by Side Diff: media/base/wall_clock_time_source.h

Issue 623263003: replace OVERRIDE and FINAL with override and final in media/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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
« no previous file with comments | « media/base/video_frame_unittest.cc ('k') | media/blink/buffered_data_source.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_BASE_WALL_CLOCK_TIME_SOURCE_H_ 5 #ifndef MEDIA_BASE_WALL_CLOCK_TIME_SOURCE_H_
6 #define MEDIA_BASE_WALL_CLOCK_TIME_SOURCE_H_ 6 #define MEDIA_BASE_WALL_CLOCK_TIME_SOURCE_H_
7 7
8 #include "base/memory/scoped_ptr.h" 8 #include "base/memory/scoped_ptr.h"
9 #include "base/synchronization/lock.h" 9 #include "base/synchronization/lock.h"
10 #include "media/base/media_export.h" 10 #include "media/base/media_export.h"
11 #include "media/base/time_source.h" 11 #include "media/base/time_source.h"
12 12
13 namespace base { 13 namespace base {
14 class TickClock; 14 class TickClock;
15 } 15 }
16 16
17 namespace media { 17 namespace media {
18 18
19 // A time source that uses interpolation based on the system clock. 19 // A time source that uses interpolation based on the system clock.
20 class MEDIA_EXPORT WallClockTimeSource : public TimeSource { 20 class MEDIA_EXPORT WallClockTimeSource : public TimeSource {
21 public: 21 public:
22 WallClockTimeSource(); 22 WallClockTimeSource();
23 virtual ~WallClockTimeSource(); 23 virtual ~WallClockTimeSource();
24 24
25 // TimeSource implementation. 25 // TimeSource implementation.
26 virtual void StartTicking() OVERRIDE; 26 virtual void StartTicking() override;
27 virtual void StopTicking() OVERRIDE; 27 virtual void StopTicking() override;
28 virtual void SetPlaybackRate(float playback_rate) OVERRIDE; 28 virtual void SetPlaybackRate(float playback_rate) override;
29 virtual void SetMediaTime(base::TimeDelta time) OVERRIDE; 29 virtual void SetMediaTime(base::TimeDelta time) override;
30 virtual base::TimeDelta CurrentMediaTime() OVERRIDE; 30 virtual base::TimeDelta CurrentMediaTime() override;
31 virtual base::TimeDelta CurrentMediaTimeForSyncingVideo() OVERRIDE; 31 virtual base::TimeDelta CurrentMediaTimeForSyncingVideo() override;
32 32
33 void SetTickClockForTesting(scoped_ptr<base::TickClock> tick_clock); 33 void SetTickClockForTesting(scoped_ptr<base::TickClock> tick_clock);
34 34
35 private: 35 private:
36 base::TimeDelta CurrentMediaTime_Locked(); 36 base::TimeDelta CurrentMediaTime_Locked();
37 37
38 scoped_ptr<base::TickClock> tick_clock_; 38 scoped_ptr<base::TickClock> tick_clock_;
39 bool ticking_; 39 bool ticking_;
40 40
41 // While ticking we can interpolate the current media time by measuring the 41 // While ticking we can interpolate the current media time by measuring the
42 // delta between our reference ticks and the current system ticks and scaling 42 // delta between our reference ticks and the current system ticks and scaling
43 // that time by the playback rate. 43 // that time by the playback rate.
44 float playback_rate_; 44 float playback_rate_;
45 base::TimeDelta base_time_; 45 base::TimeDelta base_time_;
46 base::TimeTicks reference_wall_ticks_; 46 base::TimeTicks reference_wall_ticks_;
47 47
48 // TODO(scherkus): Remove internal locking from this class after access to 48 // TODO(scherkus): Remove internal locking from this class after access to
49 // Renderer::CurrentMediaTime() is single threaded http://crbug.com/370634 49 // Renderer::CurrentMediaTime() is single threaded http://crbug.com/370634
50 base::Lock lock_; 50 base::Lock lock_;
51 51
52 DISALLOW_COPY_AND_ASSIGN(WallClockTimeSource); 52 DISALLOW_COPY_AND_ASSIGN(WallClockTimeSource);
53 }; 53 };
54 54
55 } // namespace media 55 } // namespace media
56 56
57 #endif // MEDIA_BASE_WALL_CLOCK_TIME_SOURCE_H_ 57 #endif // MEDIA_BASE_WALL_CLOCK_TIME_SOURCE_H_
OLDNEW
« no previous file with comments | « media/base/video_frame_unittest.cc ('k') | media/blink/buffered_data_source.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698