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

Unified Diff: ash/common/wm/workspace/workspace_layout_manager.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/common/wm/overview/window_grid.cc ('k') | ash/display/display_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/common/wm/workspace/workspace_layout_manager.cc
diff --git a/ash/common/wm/workspace/workspace_layout_manager.cc b/ash/common/wm/workspace/workspace_layout_manager.cc
index b52cc60b21749b762977a61835094cc4726d69f6..78de58d1124feea1bf024025791bbc070994b6db 100644
--- a/ash/common/wm/workspace/workspace_layout_manager.cc
+++ b/ash/common/wm/workspace/workspace_layout_manager.cc
@@ -358,7 +358,7 @@ void WorkspaceLayoutManager::UpdateAlwaysOnTop(WmWindow* window_on_top) {
// always_on_top containers' layouts are managed by this class all the
// appropriate windows will be included in the iteration.
WindowSet windows(windows_);
- for (auto window : windows) {
+ for (auto* window : windows) {
wm::WindowState* window_state = window->GetWindowState();
if (window_on_top)
window_state->DisableAlwaysOnTop(window_on_top);
« no previous file with comments | « ash/common/wm/overview/window_grid.cc ('k') | ash/display/display_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698