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

Unified Diff: util/mac/service_management.cc

Issue 656703002: Convert NULL to nullptr (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: Fix 80-column violations Created 6 years, 2 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 | « util/mac/process_reader_test.cc ('k') | util/mach/exc_client_variants.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: util/mac/service_management.cc
diff --git a/util/mac/service_management.cc b/util/mac/service_management.cc
index 79493175e3ce5c3efd66e329a9741b307e57493f..32486be998bfcde9e2d24ff4a8ac850f0d0173ec 100644
--- a/util/mac/service_management.cc
+++ b/util/mac/service_management.cc
@@ -31,7 +31,7 @@ launch_data_t LaunchDataDictionaryForJob(const std::string& label) {
base::mac::ScopedLaunchData response(launch_msg(request));
if (launch_data_get_type(response) != LAUNCH_DATA_DICTIONARY) {
- return NULL;
+ return nullptr;
}
return response.release();
« no previous file with comments | « util/mac/process_reader_test.cc ('k') | util/mach/exc_client_variants.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698