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

Unified Diff: remoting/client/plugin/pepper_packet_socket_factory.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/client/plugin/pepper_input_handler.cc ('k') | remoting/client/server_log_entry_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/client/plugin/pepper_packet_socket_factory.cc
diff --git a/remoting/client/plugin/pepper_packet_socket_factory.cc b/remoting/client/plugin/pepper_packet_socket_factory.cc
index e1b7ed24b1a56c37f020f244f286018b26453c70..b8a1249200d6fee12ff06d48644a75e07a63f452 100644
--- a/remoting/client/plugin/pepper_packet_socket_factory.cc
+++ b/remoting/client/plugin/pepper_packet_socket_factory.cc
@@ -413,7 +413,7 @@ rtc::AsyncPacketSocket* PepperPacketSocketFactory::CreateUdpSocket(
uint16 max_port) {
scoped_ptr<UdpPacketSocket> result(new UdpPacketSocket(pp_instance_));
if (!result->Init(local_address, min_port, max_port))
- return NULL;
+ return nullptr;
return result.release();
}
@@ -424,7 +424,7 @@ rtc::AsyncPacketSocket* PepperPacketSocketFactory::CreateServerTcpSocket(
int opts) {
// We don't use TCP sockets for remoting connections.
NOTREACHED();
- return NULL;
+ return nullptr;
}
rtc::AsyncPacketSocket* PepperPacketSocketFactory::CreateClientTcpSocket(
@@ -435,7 +435,7 @@ rtc::AsyncPacketSocket* PepperPacketSocketFactory::CreateClientTcpSocket(
int opts) {
// We don't use TCP sockets for remoting connections.
NOTREACHED();
- return NULL;
+ return nullptr;
}
rtc::AsyncResolverInterface*
« no previous file with comments | « remoting/client/plugin/pepper_input_handler.cc ('k') | remoting/client/server_log_entry_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698