| Index: third_party/crashpad/crashpad/util/posix/process_info_mac.cc
|
| diff --git a/third_party/crashpad/crashpad/util/posix/process_info_mac.cc b/third_party/crashpad/crashpad/util/posix/process_info_mac.cc
|
| index 17d205a68e5bb110e23c8b03b2c1eb2da0df63f5..4a1fc58ab9e59e793187b38c7adde8527e61845d 100644
|
| --- a/third_party/crashpad/crashpad/util/posix/process_info_mac.cc
|
| +++ b/third_party/crashpad/crashpad/util/posix/process_info_mac.cc
|
| @@ -132,14 +132,16 @@ bool ProcessInfo::DidChangePrivileges() const {
|
| return kern_proc_info_.kp_proc.p_flag & P_SUGID;
|
| }
|
|
|
| -bool ProcessInfo::Is64Bit() const {
|
| +bool ProcessInfo::Is64Bit(bool* is_64_bit) const {
|
| INITIALIZATION_STATE_DCHECK_VALID(initialized_);
|
| - return kern_proc_info_.kp_proc.p_flag & P_LP64;
|
| + *is_64_bit = kern_proc_info_.kp_proc.p_flag & P_LP64;
|
| + return true;
|
| }
|
|
|
| -void ProcessInfo::StartTime(timeval* start_time) const {
|
| +bool ProcessInfo::StartTime(timeval* start_time) const {
|
| INITIALIZATION_STATE_DCHECK_VALID(initialized_);
|
| *start_time = kern_proc_info_.kp_proc.p_starttime;
|
| + return true;
|
| }
|
|
|
| bool ProcessInfo::Arguments(std::vector<std::string>* argv) const {
|
|
|