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

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: All remaining files 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
Index: cc/CCDelayBasedTimeSource.h
diff --git a/cc/CCDelayBasedTimeSource.h b/cc/CCDelayBasedTimeSource.h
index d9c9c28dcb3042125f691d1b6b90d3b6a87695d2..09acbac43f563976b6594a167ca6f74aef070c51 100644
--- a/cc/CCDelayBasedTimeSource.h
+++ b/cc/CCDelayBasedTimeSource.h
@@ -21,13 +21,13 @@ public:
virtual ~CCDelayBasedTimeSource() { }
- virtual void setClient(CCTimeSourceClient* client) OVERRIDE { m_client = client; }
+ virtual void setClient(CCTimeSourceClient* client) OVERRIDE;
// CCTimeSource implementation
virtual void setTimebaseAndInterval(double timebase, double intervalSeconds) 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 double lastTickTime() OVERRIDE;

Powered by Google App Engine
This is Rietveld 408576698