A few places in the code are using a blanket `allow(unused_imports)`
compiler directive to silence errors about unused imports when the
`webxr` feature is disabled. Since this can hide other kinds of unused
imports, replace these directives with conditional `use` statements.
Testing: No behavior change, so existing tests suffice.
Signed-off-by: Martin Robinson <mrobinson@igalia.com>