Chromium Code Reviews| Index: webrtc/modules/video_coding/packet.cc |
| diff --git a/webrtc/modules/video_coding/packet.cc b/webrtc/modules/video_coding/packet.cc |
| index 4d5ba7c5cfe898e7bc14442447108cf9f242f4bb..2942fb31ee0996398a558b65279c62df6bb1a65e 100644 |
| --- a/webrtc/modules/video_coding/packet.cc |
| +++ b/webrtc/modules/video_coding/packet.cc |
| @@ -21,7 +21,7 @@ VCMPacket::VCMPacket() |
| timestamp(0), |
| ntp_time_ms_(0), |
| seqNum(0), |
| - dataPtr(NULL), |
| + dataPtr(nullptr), |
| sizeBytes(0), |
| markerBit(false), |
| timesNacked(-1), |
| @@ -73,7 +73,7 @@ void VCMPacket::Reset() { |
| timestamp = 0; |
| ntp_time_ms_ = 0; |
| seqNum = 0; |
| - dataPtr = NULL; |
| + dataPtr = nullptr; |
| sizeBytes = 0; |
| markerBit = false; |
| timesNacked = -1; |