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

Unified Diff: chrome/browser/renderer_host/site_per_process_text_input_browsertest.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/renderer_host/site_per_process_text_input_browsertest.cc
diff --git a/chrome/browser/renderer_host/site_per_process_text_input_browsertest.cc b/chrome/browser/renderer_host/site_per_process_text_input_browsertest.cc
index 6d0121ae5d0dc50ca1b0b2163088d8cef58b03de..0b387f5fe36e3ea63615cff50f52053b42a92da1 100644
--- a/chrome/browser/renderer_host/site_per_process_text_input_browsertest.cc
+++ b/chrome/browser/renderer_host/site_per_process_text_input_browsertest.cc
@@ -1298,7 +1298,7 @@ IN_PROC_BROWSER_TEST_F(SitePerProcessTextInputManagerTest,
std::vector<content::RenderFrameHost*> frames{GetFrame(IndexVector{}),
GetFrame(IndexVector{0})};
std::vector<content::RenderWidgetHostView*> views;
- for (auto frame : frames)
+ for (auto* frame : frames)
views.push_back(frame->GetView());
std::vector<std::string> values{"main frame", "child frame"};
« no previous file with comments | « chrome/browser/predictors/resource_prefetch_predictor_android.cc ('k') | chrome/browser/safe_browsing/srt_fetcher_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698