| Index: ash/host/ash_window_tree_host_unified.cc
|
| diff --git a/ash/host/ash_window_tree_host_unified.cc b/ash/host/ash_window_tree_host_unified.cc
|
| index 7f6869b498b7162c232a92eda26c8eac6b0c7daf..4e281f99e55c4239893adba6397f41451d338f85 100644
|
| --- a/ash/host/ash_window_tree_host_unified.cc
|
| +++ b/ash/host/ash_window_tree_host_unified.cc
|
| @@ -63,7 +63,7 @@ AshWindowTreeHostUnified::~AshWindowTreeHostUnified() {
|
| void AshWindowTreeHostUnified::PrepareForShutdown() {
|
| AshWindowTreeHostPlatform::PrepareForShutdown();
|
|
|
| - for (auto host : mirroring_hosts_)
|
| + for (auto* host : mirroring_hosts_)
|
| host->PrepareForShutdown();
|
| }
|
|
|
| @@ -84,12 +84,12 @@ void AshWindowTreeHostUnified::SetBounds(const gfx::Rect& bounds) {
|
| }
|
|
|
| void AshWindowTreeHostUnified::SetCursorNative(gfx::NativeCursor cursor) {
|
| - for (auto host : mirroring_hosts_)
|
| + for (auto* host : mirroring_hosts_)
|
| host->AsWindowTreeHost()->SetCursor(cursor);
|
| }
|
|
|
| void AshWindowTreeHostUnified::OnCursorVisibilityChangedNative(bool show) {
|
| - for (auto host : mirroring_hosts_)
|
| + for (auto* host : mirroring_hosts_)
|
| host->AsWindowTreeHost()->OnCursorVisibilityChanged(show);
|
| }
|
|
|
|
|