diff --git a/BUILD.gn b/BUILD.gn index 90bd0ff2d1e81..5265ca2ddfa64 100644 --- a/BUILD.gn +++ b/BUILD.gn @@ -583,6 +583,9 @@ source_set("electron_lib") { if (enable_desktop_capturer) { if (is_component_build && !is_linux) { + # On windows the implementation relies on unexported + # DxgiDuplicatorController class. On macOS the implementation + # relies on unexported webrtc::GetWindowOwnerPid method. deps += [ "//third_party/webrtc/modules/desktop_capture" ] } sources += [ diff --git a/shell/browser/api/atom_api_top_level_window.cc b/shell/browser/api/atom_api_top_level_window.cc index 39004cadeecde..fae1771620855 100644 --- a/shell/browser/api/atom_api_top_level_window.cc +++ b/shell/browser/api/atom_api_top_level_window.cc @@ -555,8 +555,12 @@ std::vector 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() {