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

Unified Diff: cc/CCAnimationCurve.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 | « no previous file | cc/CCAnimationCurve.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/CCAnimationCurve.h
diff --git a/cc/CCAnimationCurve.h b/cc/CCAnimationCurve.h
index 46808f657494f01bba7cdd9f0be6c6064b6dfd1a..c177d233b1b4f1ee77f26eb4a12ad6ee54dd2be6 100644
--- a/cc/CCAnimationCurve.h
+++ b/cc/CCAnimationCurve.h
@@ -38,7 +38,7 @@ public:
virtual float getValue(double t) const = 0;
// Partial CCAnimation implementation.
- virtual Type type() const OVERRIDE { return Float; }
+ virtual Type type() const OVERRIDE;
};
class CCTransformAnimationCurve : public CCAnimationCurve {
@@ -48,7 +48,7 @@ public:
virtual WebKit::WebTransformationMatrix getValue(double t) const = 0;
// Partial CCAnimation implementation.
- virtual Type type() const OVERRIDE { return Transform; }
+ virtual Type type() const OVERRIDE;
};
} // namespace cc
« no previous file with comments | « no previous file | cc/CCAnimationCurve.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698