Bug 690892 - Replace PR_TRUE/PR_FALSE with true/false on mozilla-central; rs=dbaron
Landing on a CLOSED TREE
This commit is contained in:
@@ -138,7 +138,7 @@ public:
|
||||
ImageContainer() :
|
||||
mReentrantMonitor("ImageContainer.mReentrantMonitor"),
|
||||
mPaintCount(0),
|
||||
mPreviousImagePainted(PR_FALSE)
|
||||
mPreviousImagePainted(false)
|
||||
{}
|
||||
|
||||
virtual ~ImageContainer() {}
|
||||
@@ -278,7 +278,7 @@ public:
|
||||
// still must count it as painted, but can't set mPaintTime, since we're
|
||||
// no longer the current image.
|
||||
mPaintCount++;
|
||||
mPreviousImagePainted = PR_TRUE;
|
||||
mPreviousImagePainted = true;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -294,7 +294,7 @@ protected:
|
||||
mManager(aManager),
|
||||
mReentrantMonitor("ImageContainer.mReentrantMonitor"),
|
||||
mPaintCount(0),
|
||||
mPreviousImagePainted(PR_FALSE)
|
||||
mPreviousImagePainted(false)
|
||||
{}
|
||||
|
||||
// Performs necessary housekeeping to ensure the painted frame statistics
|
||||
|
||||
Reference in New Issue
Block a user