feat: add option to not transform processes on win.SetVisibleOnAllWorkspaces (#27200)
* fix: optionally transform processes on win.SetVisibleOnAllWorkspaces on macOS, making it backwards-compatible with v9.2.1 (#27101) * fix: optionally transform processes on win.SetVisibleOnAllWorkspaces on macOS, making it backwards-compatible with v9.2.1 (#27101) Co-authored-by: Cyrus Roshan <cyrusroshan@users.noreply.github.com>
This commit is contained in:
parent
272611cc82
commit
444ad26f89
7 changed files with 36 additions and 16 deletions
|
@ -187,8 +187,10 @@ class NativeWindow : public base::SupportsUserData,
|
|||
const std::string& description) = 0;
|
||||
|
||||
// Workspace APIs.
|
||||
virtual void SetVisibleOnAllWorkspaces(bool visible,
|
||||
bool visibleOnFullScreen = false) = 0;
|
||||
virtual void SetVisibleOnAllWorkspaces(
|
||||
bool visible,
|
||||
bool visibleOnFullScreen = false,
|
||||
bool skipTransformProcessType = false) = 0;
|
||||
|
||||
virtual bool IsVisibleOnAllWorkspaces() = 0;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue