We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
May I suggest we add a single enum for "include", "exclude" (not web exposed) and use it where needed?
Before:
enum SelfCapturePreferenceEnum { "include", "exclude" }; enum SystemAudioPreferenceEnum { "include", "exclude" }; enum SurfaceSwitchingPreferenceEnum { "include", "exclude" }; enum MonitorTypeSurfacesEnum { "include", "exclude" };
After:
enum DisplayMediaIncludeOrExclude { "include", "exclude" }; typedef DisplayMediaIncludeOrExclude SystemAudioPreferenceEnum; typedef DisplayMediaIncludeOrExclude SelfCapturePreferenceEnum; typedef DisplayMediaIncludeOrExclude SurfaceSwitchingPreferenceEnum; typedef DisplayMediaIncludeOrExclude MonitorTypeSurfacesEnum;
The text was updated successfully, but these errors were encountered:
If it's not Web-exposed, could it be used in the IDL files of UA implementations without being reflected by a spec change, perhaps?
Sorry, something went wrong.
@jan-ivar @youennf What do you think?
No branches or pull requests
May I suggest we add a single enum for "include", "exclude" (not web exposed) and use it where needed?
Before:
After:
The text was updated successfully, but these errors were encountered: