| Index: components/exo/surface.cc
|
| diff --git a/components/exo/surface.cc b/components/exo/surface.cc
|
| index a1b92dafc9eed8f46378abcbf647023935eadfe6..b3ef1ceaf031ff619365b001cc6500bba735e633 100644
|
| --- a/components/exo/surface.cc
|
| +++ b/components/exo/surface.cc
|
| @@ -562,7 +562,7 @@ void Surface::UnregisterCursorProvider(Pointer* provider) {
|
| gfx::NativeCursor Surface::GetCursor() {
|
| // What cursor we display when we have multiple cursor providers is not
|
| // important. Return the first non-null cursor.
|
| - for (const auto& cursor_provider : cursor_providers_) {
|
| + for (auto* cursor_provider : cursor_providers_) {
|
| gfx::NativeCursor cursor = cursor_provider->GetCursor();
|
| if (cursor != ui::kCursorNull)
|
| return cursor;
|
|
|