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

Side by Side Diff: components/crash/app/breakpad_mac.mm

Issue 817153002: Switch users of foundation_util.h to include it directly and clean up uses of mac_util.h. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 12 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 unified diff | Download patch
OLDNEW
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/app/breakpad_mac.h" 5 #import "components/crash/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 9
10 #include "base/auto_reset.h" 10 #include "base/auto_reset.h"
11 #include "base/base_switches.h" 11 #include "base/base_switches.h"
12 #import "base/basictypes.h" 12 #import "base/basictypes.h"
13 #include "base/command_line.h" 13 #include "base/command_line.h"
14 #include "base/debug/crash_logging.h" 14 #include "base/debug/crash_logging.h"
15 #include "base/debug/dump_without_crashing.h" 15 #include "base/debug/dump_without_crashing.h"
16 #include "base/files/file_path.h" 16 #include "base/files/file_path.h"
17 #include "base/files/file_util.h" 17 #include "base/files/file_util.h"
18 #import "base/logging.h" 18 #import "base/logging.h"
19 #include "base/mac/bundle_locations.h" 19 #include "base/mac/bundle_locations.h"
20 #include "base/mac/foundation_util.h"
20 #include "base/mac/mac_util.h" 21 #include "base/mac/mac_util.h"
21 #include "base/mac/scoped_cftyperef.h" 22 #include "base/mac/scoped_cftyperef.h"
22 #import "base/mac/scoped_nsautorelease_pool.h" 23 #import "base/mac/scoped_nsautorelease_pool.h"
23 #include "base/strings/sys_string_conversions.h" 24 #include "base/strings/sys_string_conversions.h"
24 #include "base/threading/platform_thread.h" 25 #include "base/threading/platform_thread.h"
25 #include "base/threading/thread_restrictions.h" 26 #include "base/threading/thread_restrictions.h"
26 #import "breakpad/src/client/mac/Framework/Breakpad.h" 27 #import "breakpad/src/client/mac/Framework/Breakpad.h"
27 #include "components/crash/app/crash_reporter_client.h" 28 #include "components/crash/app/crash_reporter_client.h"
28 29
29 using crash_reporter::GetCrashReporterClient; 30 using crash_reporter::GetCrashReporterClient;
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after
285 286
286 // Store process type in crash dump. 287 // Store process type in crash dump.
287 SetCrashKeyValue(@"ptype", process_type); 288 SetCrashKeyValue(@"ptype", process_type);
288 289
289 NSString* pid_value = 290 NSString* pid_value =
290 [NSString stringWithFormat:@"%d", static_cast<unsigned int>(getpid())]; 291 [NSString stringWithFormat:@"%d", static_cast<unsigned int>(getpid())];
291 SetCrashKeyValue(@"pid", pid_value); 292 SetCrashKeyValue(@"pid", pid_value);
292 } 293 }
293 294
294 } // namespace breakpad 295 } // namespace breakpad
OLDNEW
« no previous file with comments | « chrome/utility/importer/safari_importer.mm ('k') | content/browser/download/file_metadata_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698