| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #import "components/crash/content/app/breakpad_mac.h" | 5 #import "components/crash/content/app/breakpad_mac.h" |
| 6 | 6 |
| 7 #include <CoreFoundation/CoreFoundation.h> | 7 #include <CoreFoundation/CoreFoundation.h> |
| 8 #import <Foundation/Foundation.h> | 8 #import <Foundation/Foundation.h> |
| 9 #include <stddef.h> |
| 10 #include <string.h> |
| 9 | 11 |
| 10 #include "base/auto_reset.h" | 12 #include "base/auto_reset.h" |
| 11 #include "base/base_switches.h" | 13 #include "base/base_switches.h" |
| 12 #import "base/basictypes.h" | 14 #import "base/basictypes.h" |
| 13 #include "base/command_line.h" | 15 #include "base/command_line.h" |
| 14 #include "base/debug/crash_logging.h" | 16 #include "base/debug/crash_logging.h" |
| 15 #include "base/debug/dump_without_crashing.h" | 17 #include "base/debug/dump_without_crashing.h" |
| 16 #include "base/files/file_path.h" | 18 #include "base/files/file_path.h" |
| 17 #include "base/files/file_util.h" | 19 #include "base/files/file_util.h" |
| 18 #import "base/logging.h" | 20 #import "base/logging.h" |
| 19 #include "base/mac/bundle_locations.h" | 21 #include "base/mac/bundle_locations.h" |
| 20 #include "base/mac/foundation_util.h" | 22 #include "base/mac/foundation_util.h" |
| 21 #include "base/mac/mac_util.h" | 23 #include "base/mac/mac_util.h" |
| 22 #include "base/mac/scoped_cftyperef.h" | 24 #include "base/mac/scoped_cftyperef.h" |
| 23 #import "base/mac/scoped_nsautorelease_pool.h" | 25 #import "base/mac/scoped_nsautorelease_pool.h" |
| 26 #include "base/macros.h" |
| 24 #include "base/strings/sys_string_conversions.h" | 27 #include "base/strings/sys_string_conversions.h" |
| 25 #include "base/threading/platform_thread.h" | 28 #include "base/threading/platform_thread.h" |
| 26 #include "base/threading/thread_restrictions.h" | 29 #include "base/threading/thread_restrictions.h" |
| 27 #import "breakpad/src/client/mac/Framework/Breakpad.h" | 30 #import "breakpad/src/client/mac/Framework/Breakpad.h" |
| 28 #include "breakpad/src/common/simple_string_dictionary.h" | 31 #include "breakpad/src/common/simple_string_dictionary.h" |
| 29 #include "components/crash/content/app/crash_reporter_client.h" | 32 #include "components/crash/content/app/crash_reporter_client.h" |
| 30 #include "components/crash/core/common/crash_keys.h" | 33 #include "components/crash/core/common/crash_keys.h" |
| 31 | 34 |
| 32 using crash_reporter::GetCrashReporterClient; | 35 using crash_reporter::GetCrashReporterClient; |
| 33 | 36 |
| (...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 287 | 290 |
| 288 // Store process type in crash dump. | 291 // Store process type in crash dump. |
| 289 SetCrashKeyValue(@"ptype", process_type); | 292 SetCrashKeyValue(@"ptype", process_type); |
| 290 | 293 |
| 291 NSString* pid_value = | 294 NSString* pid_value = |
| 292 [NSString stringWithFormat:@"%d", static_cast<unsigned int>(getpid())]; | 295 [NSString stringWithFormat:@"%d", static_cast<unsigned int>(getpid())]; |
| 293 SetCrashKeyValue(@"pid", pid_value); | 296 SetCrashKeyValue(@"pid", pid_value); |
| 294 } | 297 } |
| 295 | 298 |
| 296 } // namespace breakpad | 299 } // namespace breakpad |
| OLD | NEW |