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

Unified Diff: remoting/signaling/iq_sender.h

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/signaling/fake_signal_strategy.cc ('k') | remoting/signaling/iq_sender.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/signaling/iq_sender.h
diff --git a/remoting/signaling/iq_sender.h b/remoting/signaling/iq_sender.h
index 02744eda137dc0222eabef1280e6be4f9fb4e2f2..dfdfbfe3c59ab02cd233d6a00f2192442dbbd021 100644
--- a/remoting/signaling/iq_sender.h
+++ b/remoting/signaling/iq_sender.h
@@ -33,7 +33,7 @@ class SignalStrategy;
class IqSender : public SignalStrategy::Listener {
public:
// Callback that is called when an Iq response is received. Called
- // with the |response| set to NULL in case of a timeout.
+ // with the |response| set to nullptr in case of a timeout.
typedef base::Callback<void(IqRequest* request,
const buzz::XmlElement* response)> ReplyCallback;
@@ -85,7 +85,7 @@ class IqRequest : public base::SupportsWeakPtr<IqRequest> {
~IqRequest();
// Sets timeout for the request. When the timeout expires the
- // callback is called with the |response| set to NULL.
+ // callback is called with the |response| set to nullptr.
void SetTimeout(base::TimeDelta timeout);
private:
« no previous file with comments | « remoting/signaling/fake_signal_strategy.cc ('k') | remoting/signaling/iq_sender.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698