Replace nil -> NULL in the views code.

Review URL: http://codereview.appspot.com/67139


git-svn-id: http://skia.googlecode.com/svn/trunk@200 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/src/views/SkBorderView.cpp b/src/views/SkBorderView.cpp
index 3356782..3a9c449 100644
--- a/src/views/SkBorderView.cpp
+++ b/src/views/SkBorderView.cpp
@@ -43,7 +43,7 @@
 	SkAnimator::DifferenceType	diff = fAnim.draw(canvas, &paint, SkTime::GetMSecs());
 	
 	if (diff == SkAnimator::kDifferent)
-		this->inval(nil);
+		this->inval(NULL);
 	else if (diff == SkAnimator::kPartiallyDifferent)
 	{
 		SkRect	bounds;
@@ -56,7 +56,7 @@
 {
 	if (evt.isType(SK_EventType_Inval))
 	{
-		this->inval(nil);
+		this->inval(NULL);
 		return true;
 	}
 	if (evt.isType("recommendDim"))