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

Unified Diff: webrtc/api/jsep.h

Issue 2715103002: Replace NULL with nullptr or null in webrtc/api/. (Closed)
Patch Set: merge with master Created 3 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 | « no previous file | webrtc/api/jsepicecandidate.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/api/jsep.h
diff --git a/webrtc/api/jsep.h b/webrtc/api/jsep.h
index 5ebf7c19d089b5582e90d6c827932ea370ccf8dd..aa6e9a135460a5695ce826a14d6c0a8cb66d9cf2 100644
--- a/webrtc/api/jsep.h
+++ b/webrtc/api/jsep.h
@@ -68,8 +68,8 @@ class IceCandidateInterface {
};
// Creates a IceCandidateInterface based on SDP string.
-// Returns NULL if the sdp string can't be parsed.
-// |error| may be NULL.
+// Returns null if the sdp string can't be parsed.
+// |error| may be null.
IceCandidateInterface* CreateIceCandidate(const std::string& sdp_mid,
int sdp_mline_index,
const std::string& sdp,
@@ -141,8 +141,8 @@ class SessionDescriptionInterface {
};
// Creates a SessionDescriptionInterface based on the SDP string and the type.
-// Returns NULL if the sdp string can't be parsed or the type is unsupported.
-// |error| may be NULL.
+// Returns null if the sdp string can't be parsed or the type is unsupported.
+// |error| may be null.
SessionDescriptionInterface* CreateSessionDescription(const std::string& type,
const std::string& sdp,
SdpParseError* error);
« no previous file with comments | « no previous file | webrtc/api/jsepicecandidate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698