Index: Source/core/animation/Animation.cpp |
diff --git a/Source/core/animation/Animation.cpp b/Source/core/animation/Animation.cpp |
index 1d66d42faa37f649853b1e89e86728ab94d66d16..4ff368e64aae07a1ff0915c9609a3ea98f757d13 100644 |
--- a/Source/core/animation/Animation.cpp |
+++ b/Source/core/animation/Animation.cpp |
@@ -68,7 +68,7 @@ PassRefPtr<Animation> Animation::create(Element* element, Vector<Dictionary> key |
// FIXME: This test will not be neccessary once resolution of keyframe values occurs at |
// animation application time. |
if (!checkDocumentAndRenderer(element)) |
- return 0; |
+ return nullptr; |
return createUnsafe(element, keyframeDictionaryVector, timingInput); |
} |
@@ -80,7 +80,7 @@ PassRefPtr<Animation> Animation::create(Element* element, Vector<Dictionary> key |
// FIXME: This test will not be neccessary once resolution of keyframe values occurs at |
// animation application time. |
if (!checkDocumentAndRenderer(element)) |
- return 0; |
+ return nullptr; |
return createUnsafe(element, keyframeDictionaryVector, timingInput); |
} |
@@ -92,7 +92,7 @@ PassRefPtr<Animation> Animation::create(Element* element, Vector<Dictionary> key |
// FIXME: This test will not be neccessary once resolution of keyframe values occurs at |
// animation application time. |
if (!checkDocumentAndRenderer(element)) |
- return 0; |
+ return nullptr; |
return createUnsafe(element, keyframeDictionaryVector); |
} |