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

Unified Diff: chrome/browser/android/banners/app_banner_infobar_delegate_android.cc

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 | « base/win/scoped_handle.cc ('k') | chrome/browser/android/instantapps/instant_apps_infobar_delegate.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/android/banners/app_banner_infobar_delegate_android.cc
diff --git a/chrome/browser/android/banners/app_banner_infobar_delegate_android.cc b/chrome/browser/android/banners/app_banner_infobar_delegate_android.cc
index b2a9533d0e6d2cde5cce3171c9ac8b0284e4efd7..a91efcc059a19a1049034e9f903545d897912540 100644
--- a/chrome/browser/android/banners/app_banner_infobar_delegate_android.cc
+++ b/chrome/browser/android/banners/app_banner_infobar_delegate_android.cc
@@ -66,7 +66,7 @@ bool AppBannerInfoBarDelegateAndroid::Create(
weak_manager, app_title, std::move(shortcut_info), std::move(icon),
event_request_id, is_webapk, is_webapk_already_installed,
webapk_install_source));
- auto raw_delegate = infobar_delegate.get();
+ auto* raw_delegate = infobar_delegate.get();
auto infobar = base::MakeUnique<AppBannerInfoBarAndroid>(
std::move(infobar_delegate), url, is_webapk);
if (!InfoBarService::FromWebContents(web_contents)
« no previous file with comments | « base/win/scoped_handle.cc ('k') | chrome/browser/android/instantapps/instant_apps_infobar_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698