| 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 "ios/chrome/app/safe_mode_crashing_modules_config.h" | 5 #import "ios/chrome/app/safe_mode_crashing_modules_config.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "base/mac/foundation_util.h" | 8 #include "base/mac/foundation_util.h" |
| 9 #import "base/mac/scoped_nsobject.h" | 9 #import "base/mac/scoped_nsobject.h" |
| 10 | 10 |
| 11 #if !defined(__has_feature) || !__has_feature(objc_arc) |
| 12 #error "This file requires ARC support." |
| 13 #endif |
| 14 |
| 11 namespace { | 15 namespace { |
| 12 | 16 |
| 13 NSString* const kStartupCrashModulesKey = @"StartupCrashModules"; | 17 NSString* const kStartupCrashModulesKey = @"StartupCrashModules"; |
| 14 NSString* const kModuleFriendlyNameKey = @"ModuleFriendlyName"; | 18 NSString* const kModuleFriendlyNameKey = @"ModuleFriendlyName"; |
| 15 | 19 |
| 16 } // namespace | 20 } // namespace |
| 17 | 21 |
| 18 @interface SafeModeCrashingModulesConfig () { | 22 @interface SafeModeCrashingModulesConfig () { |
| 19 base::scoped_nsobject<NSDictionary> _configuration; | 23 base::scoped_nsobject<NSDictionary> _configuration; |
| 20 } | 24 } |
| (...skipping 21 matching lines...) Expand all Loading... |
| 42 | 46 |
| 43 - (NSString*)startupCrashModuleFriendlyName:(NSString*)modulePath { | 47 - (NSString*)startupCrashModuleFriendlyName:(NSString*)modulePath { |
| 44 NSDictionary* modules = base::mac::ObjCCastStrict<NSDictionary>( | 48 NSDictionary* modules = base::mac::ObjCCastStrict<NSDictionary>( |
| 45 [_configuration objectForKey:kStartupCrashModulesKey]); | 49 [_configuration objectForKey:kStartupCrashModulesKey]); |
| 46 NSDictionary* module = | 50 NSDictionary* module = |
| 47 base::mac::ObjCCastStrict<NSDictionary>(modules[modulePath]); | 51 base::mac::ObjCCastStrict<NSDictionary>(modules[modulePath]); |
| 48 return base::mac::ObjCCast<NSString>(module[kModuleFriendlyNameKey]); | 52 return base::mac::ObjCCast<NSString>(module[kModuleFriendlyNameKey]); |
| 49 } | 53 } |
| 50 | 54 |
| 51 @end | 55 @end |
| OLD | NEW |