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

Unified Diff: ash/mus/user_window_controller_impl.cc

Issue 2110643002: ash: Change auto to not deduce raw pointers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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 | « ash/mus/layout_manager.cc ('k') | ash/mus/window_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/mus/user_window_controller_impl.cc
diff --git a/ash/mus/user_window_controller_impl.cc b/ash/mus/user_window_controller_impl.cc
index 260811ee32884747676f09d0e7c285fc5e1c09a3..0d93eff0b55d49615dfa408d23e1114973dc0ef4 100644
--- a/ash/mus/user_window_controller_impl.cc
+++ b/ash/mus/user_window_controller_impl.cc
@@ -125,7 +125,7 @@ void UserWindowControllerImpl::AssignIdIfNecessary(::mus::Window* window) {
void UserWindowControllerImpl::RemoveObservers(::mus::Window* user_container) {
user_container->RemoveObserver(this);
user_container->window_tree()->RemoveObserver(this);
- for (auto iter : user_container->children())
+ for (auto* iter : user_container->children())
iter->RemoveObserver(window_property_observer_.get());
}
« no previous file with comments | « ash/mus/layout_manager.cc ('k') | ash/mus/window_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698