| Index: remoting/host/installer/mac/uninstaller/remoting_uninstaller_app.mm
|
| diff --git a/remoting/host/installer/mac/uninstaller/remoting_uninstaller_app.mm b/remoting/host/installer/mac/uninstaller/remoting_uninstaller_app.mm
|
| index 00878cf22f333d4b4fd9af20a691920dddf2480b..cf22a9b0e75f989210c5d9e32f95923e407f5b90 100644
|
| --- a/remoting/host/installer/mac/uninstaller/remoting_uninstaller_app.mm
|
| +++ b/remoting/host/installer/mac/uninstaller/remoting_uninstaller_app.mm
|
| @@ -40,7 +40,7 @@
|
| NSLog(@"Chrome Remote Desktop Host uninstall complete.");
|
|
|
| bool success = false;
|
| - NSString* message = NULL;
|
| + NSString* message = nullptr;
|
| if (status == errAuthorizationSuccess) {
|
| success = true;
|
| message = @"Chrome Remote Desktop Host successfully uninstalled.";
|
| @@ -53,7 +53,7 @@
|
| format:@"Error during AuthorizationCopyRights status=%d",
|
| static_cast<int>(status)];
|
| }
|
| - if (message != NULL) {
|
| + if (message != nullptr) {
|
| NSLog(@"Uninstall %s: %@", success ? "succeeded" : "failed", message);
|
| [self showSuccess:success withMessage:message];
|
| }
|
|
|