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

Unified Diff: ios/chrome/browser/web/repost_form_tab_helper_unittest.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
« no previous file with comments | « ios/chrome/browser/web/blocked_popup_tab_helper_unittest.mm ('k') | ios/web/web_state/http_auth_inttest.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/chrome/browser/web/repost_form_tab_helper_unittest.mm
diff --git a/ios/chrome/browser/web/repost_form_tab_helper_unittest.mm b/ios/chrome/browser/web/repost_form_tab_helper_unittest.mm
index a340c5f6f933532fae6b7efb0e2ae9f16c1c5647..8b1ff242ec63ea9ed5b5078f980e3bb2897122a1 100644
--- a/ios/chrome/browser/web/repost_form_tab_helper_unittest.mm
+++ b/ios/chrome/browser/web/repost_form_tab_helper_unittest.mm
@@ -50,7 +50,7 @@ class RepostFormTabHelperTest : public PlatformTest {
// Presents a repost form dialog using RepostFormTabHelperTest.
void PresentDialog() {
ASSERT_FALSE(GetAlertController());
- auto helper = RepostFormTabHelper::FromWebState(web_state_.get());
+ auto* helper = RepostFormTabHelper::FromWebState(web_state_.get());
helper->PresentDialog(location_, base::Bind(&IgnoreBool));
ASSERT_TRUE(GetAlertController());
}
« no previous file with comments | « ios/chrome/browser/web/blocked_popup_tab_helper_unittest.mm ('k') | ios/web/web_state/http_auth_inttest.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698