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

Unified Diff: chromecast/browser/devtools/cast_devtools_manager_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
« no previous file with comments | « chromecast/browser/cast_web_view.cc ('k') | chromecast/media/service/cast_renderer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromecast/browser/devtools/cast_devtools_manager_delegate.cc
diff --git a/chromecast/browser/devtools/cast_devtools_manager_delegate.cc b/chromecast/browser/devtools/cast_devtools_manager_delegate.cc
index d58e8beac6e05b0f79a09652e9220ad6f2057ded..dbc44aacf7e6f7385457a59bec52eb76d8685548 100644
--- a/chromecast/browser/devtools/cast_devtools_manager_delegate.cc
+++ b/chromecast/browser/devtools/cast_devtools_manager_delegate.cc
@@ -36,7 +36,7 @@ CastDevToolsManagerDelegate::~CastDevToolsManagerDelegate() {
bool CastDevToolsManagerDelegate::DiscoverTargets(
const content::DevToolsAgentHost::DiscoveryCallback& callback) {
content::DevToolsAgentHost::List enabled_hosts;
- for (const auto& web_contents : enabled_webcontents_) {
+ for (auto* web_contents : enabled_webcontents_) {
enabled_hosts.push_back(
content::DevToolsAgentHost::GetOrCreateFor(web_contents));
}
« no previous file with comments | « chromecast/browser/cast_web_view.cc ('k') | chromecast/media/service/cast_renderer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698