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

Unified Diff: cc/scheduler/vsync_time_source.h

Issue 12623026: cc: Chromify TimeSource, DelayBasedTimeSource and test (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Back to doubles Created 7 years, 9 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 | « cc/scheduler/time_source.h ('k') | cc/scheduler/vsync_time_source.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/scheduler/vsync_time_source.h
diff --git a/cc/scheduler/vsync_time_source.h b/cc/scheduler/vsync_time_source.h
index 8d0659c6918af23577eea6faec460a2d266c2e08..e62e0fbefdf7b71197baf393c2f130e83dd9a193 100644
--- a/cc/scheduler/vsync_time_source.h
+++ b/cc/scheduler/vsync_time_source.h
@@ -36,13 +36,13 @@ class CC_EXPORT VSyncTimeSource : public TimeSource, public VSyncClient {
static scoped_refptr<VSyncTimeSource> create(VSyncProvider* vsync_provider);
// TimeSource implementation
- virtual void setClient(TimeSourceClient* client) OVERRIDE;
- virtual void setTimebaseAndInterval(base::TimeTicks timebase,
+ virtual void SetClient(TimeSourceClient* client) OVERRIDE;
+ virtual void SetTimebaseAndInterval(base::TimeTicks timebase,
base::TimeDelta interval) OVERRIDE;
- virtual void setActive(bool active) OVERRIDE;
- virtual bool active() const OVERRIDE;
- virtual base::TimeTicks lastTickTime() OVERRIDE;
- virtual base::TimeTicks nextTickTime() OVERRIDE;
+ virtual void SetActive(bool active) OVERRIDE;
+ virtual bool Active() const OVERRIDE;
+ virtual base::TimeTicks LastTickTime() OVERRIDE;
+ virtual base::TimeTicks NextTickTime() OVERRIDE;
// VSyncClient implementation
virtual void DidVSync(base::TimeTicks frame_time) OVERRIDE;
« no previous file with comments | « cc/scheduler/time_source.h ('k') | cc/scheduler/vsync_time_source.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698