[WebGPU] Fix namespace comments
Created attachment 444344 [details] Patch
Created attachment 444345 [details] Patch
Comment on attachment 444345 [details] Patch Sure. Why is WebGPU inside namespace PAL at all?
Comment on attachment 444345 [details] Patch You may consider using C++17 nested namespace syntax to completely remove this instead. namespace PAL::WebGPU { ... } // namespace PAL::WebGPU
(In reply to Alex Christensen from comment #3) > Comment on attachment 444345 [details] > Patch > > Sure. > Why is WebGPU inside namespace PAL at all? This part of the WebGPU implementation is in pal/graphics/WebGPU, so I assumed that means it should get the PAL namespace. The parts that are in WebGPU.framework won't use the PAL namespace.
Committed r285879 (244305@main): <https://commits.webkit.org/244305@main>
<rdar://problem/85469938>