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

Unified Diff: util/test/executable_path_mac.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/synchronization/semaphore_test.cc ('k') | util/test/mac/mach_multiprocess.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: util/test/executable_path_mac.cc
diff --git a/util/test/executable_path_mac.cc b/util/test/executable_path_mac.cc
index 9da7cc99f4bc2c232d435bca06ae9418d27611eb..e768715a5e920b825c156a135fdc1e50e3988eb1 100644
--- a/util/test/executable_path_mac.cc
+++ b/util/test/executable_path_mac.cc
@@ -24,7 +24,7 @@ namespace test {
base::FilePath ExecutablePath() {
uint32_t executable_length = 0;
- _NSGetExecutablePath(NULL, &executable_length);
+ _NSGetExecutablePath(nullptr, &executable_length);
DCHECK_GT(executable_length, 1u);
std::string executable_path(executable_length, std::string::value_type());
int rv = _NSGetExecutablePath(&executable_path[0], &executable_length);
« no previous file with comments | « util/synchronization/semaphore_test.cc ('k') | util/test/mac/mach_multiprocess.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698