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

Unified Diff: chrome/browser/android/instantapps/instant_apps_infobar_delegate.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
Index: chrome/browser/android/instantapps/instant_apps_infobar_delegate.cc
diff --git a/chrome/browser/android/instantapps/instant_apps_infobar_delegate.cc b/chrome/browser/android/instantapps/instant_apps_infobar_delegate.cc
index 4e993ccc18f5c05931b8720be64aea1dbe5e34c8..22997f269cdd59b584e32e74244c0f8ead4a2fb0 100644
--- a/chrome/browser/android/instantapps/instant_apps_infobar_delegate.cc
+++ b/chrome/browser/android/instantapps/instant_apps_infobar_delegate.cc
@@ -73,7 +73,7 @@ void Launch(JNIEnv* env,
const base::android::JavaParamRef<jobject>& jweb_contents,
const base::android::JavaParamRef<jobject>& jdata,
const base::android::JavaParamRef<jstring>& jurl) {
- auto web_contents = content::WebContents::FromJavaWebContents(jweb_contents);
+ auto* web_contents = content::WebContents::FromJavaWebContents(jweb_contents);
std::string url(base::android::ConvertJavaStringToUTF8(env, jurl));
InstantAppsInfoBarDelegate::Create(
InfoBarService::FromWebContents(web_contents),

Powered by Google App Engine
This is Rietveld 408576698