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

Unified Diff: Source/core/rendering/style/KeyframeList.h

Issue 170603003: Use nullptr_t for RefPtr, PassRefPtr and RawPtr. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Final rebase Created 6 years, 10 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 | « Source/core/rendering/style/BasicShapes.cpp ('k') | Source/core/rendering/style/NinePieceImage.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/style/KeyframeList.h
diff --git a/Source/core/rendering/style/KeyframeList.h b/Source/core/rendering/style/KeyframeList.h
index ee2d237b505c5d68a76e42a7d6e2fd19f727301a..eaf03c6961dcccbd6ea81a600e238b17cc5f85bd 100644
--- a/Source/core/rendering/style/KeyframeList.h
+++ b/Source/core/rendering/style/KeyframeList.h
@@ -71,8 +71,8 @@ public:
KeyframeList(RenderObject&, const AtomicString& animationName)
: m_animationName(animationName)
{
- insert(KeyframeValue(0, 0));
- insert(KeyframeValue(1, 0));
+ insert(KeyframeValue(0, nullptr));
+ insert(KeyframeValue(1, nullptr));
}
~KeyframeList();
« no previous file with comments | « Source/core/rendering/style/BasicShapes.cpp ('k') | Source/core/rendering/style/NinePieceImage.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698