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

Unified Diff: chromecast/browser/cast_web_view.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: chromecast/browser/cast_web_view.cc
diff --git a/chromecast/browser/cast_web_view.cc b/chromecast/browser/cast_web_view.cc
index e11f7cc41229ddf6d9455dd5b174c668ac2afb13..96e373900647614bcbcece6c19843d691b8175a0 100644
--- a/chromecast/browser/cast_web_view.cc
+++ b/chromecast/browser/cast_web_view.cc
@@ -152,7 +152,7 @@ void CastWebView::ActivateContents(content::WebContents* contents) {
base::android::ScopedJavaLocalRef<jobject>
CastWebView::GetContentVideoViewEmbedder() {
DCHECK(web_contents_);
- auto activity = shell::CastWebContentsActivity::Get(web_contents_.get());
+ auto* activity = shell::CastWebContentsActivity::Get(web_contents_.get());
return activity->GetContentVideoViewEmbedder();
}
#endif // defined(OS_ANDROID)
« no previous file with comments | « chrome/browser/ui/cocoa/view_id_util.mm ('k') | chromecast/browser/devtools/cast_devtools_manager_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698