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

Unified Diff: content/shell/browser/layout_test/blink_test_controller.cc

Issue 2101943004: content: Change auto to not deduce raw pointers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase/update Created 4 years, 5 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 | « content/renderer/scheduler/resource_dispatch_throttler.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/shell/browser/layout_test/blink_test_controller.cc
diff --git a/content/shell/browser/layout_test/blink_test_controller.cc b/content/shell/browser/layout_test/blink_test_controller.cc
index 7d0405d371e24e474911608440d6ff437a776492..dae32588b5c45b2613ea91f8eb17084e20097e6c 100644
--- a/content/shell/browser/layout_test/blink_test_controller.cc
+++ b/content/shell/browser/layout_test/blink_test_controller.cc
@@ -734,7 +734,7 @@ void BlinkTestController::OnLayoutDumpResponse(RenderFrameHost* sender,
// Stitch the frame-specific results in the right order.
std::string stitched_layout_dump;
- for (const auto& render_frame_host : web_contents()->GetAllFrames()) {
+ for (auto* render_frame_host : web_contents()->GetAllFrames()) {
auto it =
frame_to_layout_dump_map_.find(render_frame_host->GetFrameTreeNodeId());
if (it != frame_to_layout_dump_map_.end()) {
« no previous file with comments | « content/renderer/scheduler/resource_dispatch_throttler.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698