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

Unified Diff: cc/CCDelayBasedTimeSource.h

Issue 10947047: Fix remaining cc files to compile with Clang (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix FakeCCDelayBasedTimeSource Created 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/CCDebugRectHistory.cpp ('k') | cc/CCDelayBasedTimeSource.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/CCDelayBasedTimeSource.h
diff --git a/cc/CCDelayBasedTimeSource.h b/cc/CCDelayBasedTimeSource.h
index 51fd0743006092f156ddce5083a58739746f18be..d3bbab1985b836a862a404b1faf8c01d800116dc 100644
--- a/cc/CCDelayBasedTimeSource.h
+++ b/cc/CCDelayBasedTimeSource.h
@@ -19,15 +19,15 @@ class CCDelayBasedTimeSource : public CCTimeSource, CCTimerClient {
public:
static PassRefPtr<CCDelayBasedTimeSource> create(base::TimeDelta interval, CCThread*);
- virtual ~CCDelayBasedTimeSource() { }
+ virtual ~CCDelayBasedTimeSource();
- virtual void setClient(CCTimeSourceClient* client) OVERRIDE { m_client = client; }
+ virtual void setClient(CCTimeSourceClient* client) OVERRIDE;
// CCTimeSource implementation
virtual void setTimebaseAndInterval(base::TimeTicks timebase, base::TimeDelta interval) OVERRIDE;
virtual void setActive(bool) OVERRIDE;
- virtual bool active() const OVERRIDE { return m_state != STATE_INACTIVE; }
+ virtual bool active() const OVERRIDE;
// Get the last and next tick times.
virtual base::TimeTicks lastTickTime() OVERRIDE;
« no previous file with comments | « cc/CCDebugRectHistory.cpp ('k') | cc/CCDelayBasedTimeSource.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698