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

Unified Diff: remoting/protocol/v2_authenticator.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/stream_channel_factory.h ('k') | remoting/signaling/fake_signal_strategy.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/v2_authenticator.cc
diff --git a/remoting/protocol/v2_authenticator.cc b/remoting/protocol/v2_authenticator.cc
index 37652a2c40737acf37c6c900af1cf8a68ddf7937..f37e74fa354a6e517fb5eb58b63b42c0a54efe47 100644
--- a/remoting/protocol/v2_authenticator.cc
+++ b/remoting/protocol/v2_authenticator.cc
@@ -31,7 +31,7 @@ const buzz::StaticQName kCertificateTag = { kChromotingXmlNamespace,
// static
bool V2Authenticator::IsEkeMessage(const buzz::XmlElement* message) {
- return message->FirstNamed(kEkeTag) != NULL;
+ return message->FirstNamed(kEkeTag) != nullptr;
}
// static
@@ -200,7 +200,7 @@ V2Authenticator::CreateChannelAuthenticator() const {
}
bool V2Authenticator::is_host_side() const {
- return local_key_pair_.get() != NULL;
+ return local_key_pair_.get() != nullptr;
}
} // namespace protocol
« no previous file with comments | « remoting/protocol/stream_channel_factory.h ('k') | remoting/signaling/fake_signal_strategy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698