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

Unified Diff: util/mach/task_memory.cc

Issue 577293002: Use task_t, thread_t, and exception_handler_t uniformly (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: Created 6 years, 3 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
Index: util/mach/task_memory.cc
diff --git a/util/mach/task_memory.cc b/util/mach/task_memory.cc
index d3d2ea6ffad9f3e5f327a63e16bf112100acb496..b87d02ea8f55f7f110a66eac6e9db7f5cb4f0194 100644
--- a/util/mach/task_memory.cc
+++ b/util/mach/task_memory.cc
@@ -64,7 +64,7 @@ TaskMemory::MappedMemory::MappedMemory(vm_address_t vm_address,
DCHECK_LE(user_end, vm_end);
}
-TaskMemory::TaskMemory(mach_port_t task) : task_(task) {
+TaskMemory::TaskMemory(task_t task) : task_(task) {
}
bool TaskMemory::Read(mach_vm_address_t address, size_t size, void* buffer) {

Powered by Google App Engine
This is Rietveld 408576698