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

Unified Diff: ios/chrome/browser/web/blocked_popup_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
Index: ios/chrome/browser/web/blocked_popup_tab_helper_unittest.mm
diff --git a/ios/chrome/browser/web/blocked_popup_tab_helper_unittest.mm b/ios/chrome/browser/web/blocked_popup_tab_helper_unittest.mm
index 2e9050c663637f7808fff55a71ef8699a9417b44..9a83a32e44f8b8da4ff4151cb5fc8e8e0940bf08 100644
--- a/ios/chrome/browser/web/blocked_popup_tab_helper_unittest.mm
+++ b/ios/chrome/browser/web/blocked_popup_tab_helper_unittest.mm
@@ -94,7 +94,7 @@ TEST_F(BlockedPopupTabHelperTest, AllowBlockedPopup) {
// Allow blocked popup.
ASSERT_EQ(1U, GetInfobarManager()->infobar_count());
infobars::InfoBar* infobar = GetInfobarManager()->infobar_at(0);
- auto delegate = infobar->delegate()->AsConfirmInfoBarDelegate();
+ auto* delegate = infobar->delegate()->AsConfirmInfoBarDelegate();
ASSERT_TRUE(delegate);
delegate->Accept();
« no previous file with comments | « ios/chrome/browser/ui/omnibox/location_bar_view_ios.mm ('k') | ios/chrome/browser/web/repost_form_tab_helper_unittest.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698