| Index: ios/chrome/browser/crash_report/crash_report_background_uploader.mm
|
| diff --git a/ios/chrome/browser/crash_report/crash_report_background_uploader.mm b/ios/chrome/browser/crash_report/crash_report_background_uploader.mm
|
| index b538de0e04883a1abeefdf6b18e763933b450190..77384d952a9cd3d500ef07858c5c56b45957e16f 100644
|
| --- a/ios/chrome/browser/crash_report/crash_report_background_uploader.mm
|
| +++ b/ios/chrome/browser/crash_report/crash_report_background_uploader.mm
|
| @@ -177,12 +177,8 @@ NSString* CreateSessionIdentifierFromTask(NSURLSessionTask* task) {
|
| static NSURLSession* session = nil;
|
| static dispatch_once_t onceToken;
|
| dispatch_once(&onceToken, ^{
|
| -
|
| - // TODO(olivierrobin) When all bots compile with iOS8 release SDK, use
|
| - // only backgroundSessionConfigurationWithIdentifier.
|
| NSURLSessionConfiguration* sessionConfig = [NSURLSessionConfiguration
|
| - backgroundSessionConfiguration:kBackgroundReportUploader];
|
| -
|
| + backgroundSessionConfigurationWithIdentifier:kBackgroundReportUploader];
|
| session = [NSURLSession
|
| sessionWithConfiguration:sessionConfig
|
| delegate:[UrlSessionDelegate sharedInstance]
|
|
|