chore: Update comment for desktop_capturer (#19848)
* chore: Update comment for desktop_capturer * Guard TopLevelWindow::MoveAbove with ENABLE_DESKTOP_CAPTURER * Fix lint errors
This commit is contained in:
parent
4bc7b3b1a4
commit
46b6bcd99b
2 changed files with 7 additions and 0 deletions
|
@ -555,8 +555,12 @@ std::vector<int> TopLevelWindow::GetPosition() {
|
|||
}
|
||||
void TopLevelWindow::MoveAbove(const std::string& sourceId,
|
||||
mate::Arguments* args) {
|
||||
#if BUILDFLAG(ENABLE_DESKTOP_CAPTURER)
|
||||
if (!window_->MoveAbove(sourceId))
|
||||
args->ThrowError("Invalid media source id");
|
||||
#else
|
||||
args->ThrowError("enable_desktop_capturer=true to use this feature");
|
||||
#endif
|
||||
}
|
||||
|
||||
void TopLevelWindow::MoveTop() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue