mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
This updates the Skwasm library to conform to the style of the rest of the engine. This includes: * Moving the location of the skwasm library into `engine/src/flutter/skwasm` instead of `engine/src/flutter/lib/web_ui/skwasm`, since that was altogether too nested and weird. * Changed all the file extensions to `.cc` instead of `.cpp` * Changed all local include paths to be from the `engine/src/flutter` directory rather than relying on the source file's location. * Changed ordering of include paths. * Removed instances of `using namespace` * Changed local variable names and argument names to use snake_case * Changed class functions to use UpperCamelCase * Changed private member variables to use trailing_ underscore instead of _leading. * Removed some uses of `auto`