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

Unified Diff: remoting/protocol/content_description.cc

Issue 810133003: replace NULL->nullptr in src/remoting. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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 | « remoting/protocol/connection_to_host.cc ('k') | remoting/protocol/datagram_channel_factory.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/content_description.cc
diff --git a/remoting/protocol/content_description.cc b/remoting/protocol/content_description.cc
index 0308fda219fc358c95df74eb16c96361e1c753b7..5d8aaacb2be16ca464cf53b2766eb973a6a11e13 100644
--- a/remoting/protocol/content_description.cc
+++ b/remoting/protocol/content_description.cc
@@ -123,7 +123,7 @@ ContentDescription::~ContentDescription() { }
ContentDescription* ContentDescription::Copy() const {
if (!candidate_config_.get() || !authenticator_message_.get()) {
- return NULL;
+ return nullptr;
}
scoped_ptr<XmlElement> message(new XmlElement(*authenticator_message_));
return new ContentDescription(candidate_config_->Clone(), message.Pass());
« no previous file with comments | « remoting/protocol/connection_to_host.cc ('k') | remoting/protocol/datagram_channel_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698