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

Unified Diff: ios/chrome/browser/sessions/session_service.mm

Issue 2721553004: Remove auto raw pointer deduction from non-linux specific code. (Closed)
Patch Set: rebase Created 3 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: ios/chrome/browser/sessions/session_service.mm
diff --git a/ios/chrome/browser/sessions/session_service.mm b/ios/chrome/browser/sessions/session_service.mm
index f7a4e8a1629f1c77693619fa911a0ab2a7b2766b..1d9283cfb99dd60ad5ef3c0bb1f074f383d144ae 100644
--- a/ios/chrome/browser/sessions/session_service.mm
+++ b/ios/chrome/browser/sessions/session_service.mm
@@ -84,7 +84,7 @@ const NSTimeInterval kSaveDelay = 2.5; // Value taken from Desktop Chrome.
self = [super init];
if (self) {
pendingWindows_.reset([[NSMutableDictionary alloc] init]);
- auto pool = web::WebThread::GetBlockingPool();
+ auto* pool = web::WebThread::GetBlockingPool();
taskRunner_ = pool->GetSequencedTaskRunner(pool->GetSequenceToken());
}
return self;
« no previous file with comments | « ios/chrome/browser/payments/shipping_address_selection_view_controller.mm ('k') | ios/chrome/browser/tabs/tab.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698