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

Unified Diff: content/browser/android/synchronous_compositor_browser_filter.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: content/browser/android/synchronous_compositor_browser_filter.cc
diff --git a/content/browser/android/synchronous_compositor_browser_filter.cc b/content/browser/android/synchronous_compositor_browser_filter.cc
index f4e661965b7840746bd3629d58c0fb97462efb38..1db0063b15594cef805e32165810a200da0f529c 100644
--- a/content/browser/android/synchronous_compositor_browser_filter.cc
+++ b/content/browser/android/synchronous_compositor_browser_filter.cc
@@ -185,7 +185,7 @@ void SynchronousCompositorBrowserFilter::VSyncComplete() {
std::vector<int> routing_ids;
routing_ids.reserve(compositor_host_pending_renderer_state_.size());
- for (const auto host : compositor_host_pending_renderer_state_)
+ for (const auto* host : compositor_host_pending_renderer_state_)
routing_ids.push_back(host->routing_id());
std::vector<SyncCompositorCommonRendererParams> params;

Powered by Google App Engine
This is Rietveld 408576698