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

Unified Diff: snapshot/thread_snapshot_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 | « snapshot/system_snapshot_mac_test.cc ('k') | tools/catch_exception_tool.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: snapshot/thread_snapshot_mac.cc
diff --git a/snapshot/thread_snapshot_mac.cc b/snapshot/thread_snapshot_mac.cc
index ac61a217e85da05b9f08366c3db1e0624ad4f19e..71de1fc2565188c5b0e9a84456640a71f36295c7 100644
--- a/snapshot/thread_snapshot_mac.cc
+++ b/snapshot/thread_snapshot_mac.cc
@@ -59,7 +59,7 @@ bool ThreadSnapshotMac::Initialize(
context_.x86_64 = &context_union_.x86_64;
InitializeCPUContextX86_64(context_.x86_64,
THREAD_STATE_NONE,
- NULL,
+ nullptr,
0,
&process_reader_thread.thread_context.t64,
&process_reader_thread.float_context.f64,
@@ -69,7 +69,7 @@ bool ThreadSnapshotMac::Initialize(
context_.x86 = &context_union_.x86;
InitializeCPUContextX86(context_.x86,
THREAD_STATE_NONE,
- NULL,
+ nullptr,
0,
&process_reader_thread.thread_context.t32,
&process_reader_thread.float_context.f32,
« no previous file with comments | « snapshot/system_snapshot_mac_test.cc ('k') | tools/catch_exception_tool.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698