Fix linter error (#37661)

diff --git a/shell/common/shell_io_manager.cc b/shell/common/shell_io_manager.cc
index 9232db2..f1bb540 100644
--- a/shell/common/shell_io_manager.cc
+++ b/shell/common/shell_io_manager.cc
@@ -22,8 +22,7 @@
 
   const auto options = MakeDefaultContextOptions(ContextType::kResource);
 
-  if (auto context =
-          GrDirectContext::MakeGL(std::move(gl_interface), options)) {
+  if (auto context = GrDirectContext::MakeGL(gl_interface, options)) {
     // Do not cache textures created by the image decoder.  These textures
     // should be deleted when they are no longer referenced by an SkImage.
     context->setResourceCacheLimit(0);