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

Unified Diff: src/views/animated/SkProgressBarView.cpp

Issue 1316233002: Style Change: NULL->nullptr (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 2015-08-27 (Thursday) 10:25:06 EDT Created 5 years, 4 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 | « src/views/animated/SkImageView.cpp ('k') | src/views/animated/SkScrollBarView.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/views/animated/SkProgressBarView.cpp
diff --git a/src/views/animated/SkProgressBarView.cpp b/src/views/animated/SkProgressBarView.cpp
index e7754eb612536c774ea81cf328064f2ddf291a44..5ce944fb07120a0b4d23c74445c38779146e2f9e 100644
--- a/src/views/animated/SkProgressBarView.cpp
+++ b/src/views/animated/SkProgressBarView.cpp
@@ -35,7 +35,7 @@ void SkProgressBarView::changeProgress(int diff)
SkAnimator::DifferenceType diff = fAnim.draw(canvas, &paint, SkTime::GetMSecs());
if (diff == SkAnimator::kDifferent)
- this->inval(NULL);
+ this->inval(nullptr);
else if (diff == SkAnimator::kPartiallyDifferent)
{
SkRect bounds;
@@ -48,7 +48,7 @@ void SkProgressBarView::changeProgress(int diff)
{
if (evt.isType(SK_EventType_Inval))
{
- this->inval(NULL);
+ this->inval(nullptr);
return true;
}
if (evt.isType("recommendDim"))
« no previous file with comments | « src/views/animated/SkImageView.cpp ('k') | src/views/animated/SkScrollBarView.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698