| Index: components/exo/surface.cc
 | 
| diff --git a/components/exo/surface.cc b/components/exo/surface.cc
 | 
| index 7b57ba82cb517c29d46c0592fe9d15a6e64ffc4f..f186ef93706b6d14d465c063e53e4b9035a3b029 100644
 | 
| --- a/components/exo/surface.cc
 | 
| +++ b/components/exo/surface.cc
 | 
| @@ -571,10 +571,10 @@ gfx::NativeCursor Surface::GetCursor() {
 | 
|    // important. Return the first non-null cursor.
 | 
|    for (auto* cursor_provider : cursor_providers_) {
 | 
|      gfx::NativeCursor cursor = cursor_provider->GetCursor();
 | 
| -    if (cursor != ui::kCursorNull)
 | 
| +    if (cursor != ui::CursorType::kNull)
 | 
|        return cursor;
 | 
|    }
 | 
| -  return ui::kCursorNull;
 | 
| +  return ui::CursorType::kNull;
 | 
|  }
 | 
|  
 | 
|  void Surface::SetSurfaceDelegate(SurfaceDelegate* delegate) {
 | 
| 
 |