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

Unified Diff: ios/chrome/browser/crash_report/crash_report_background_uploader.mm

Issue 1552533003: Remove last vestige of APIs that are deprecated in iOS 8. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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]
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698