diff --git a/atom/browser/api/atom_api_window.cc b/atom/browser/api/atom_api_window.cc index 3c7e7562a7c7..e0e1f5d6da56 100644 --- a/atom/browser/api/atom_api_window.cc +++ b/atom/browser/api/atom_api_window.cc @@ -405,6 +405,11 @@ void Window::SetProgressBar(double progress) { window_->SetProgressBar(progress); } +void Window::SetOverlayIcon(const gfx::Image& overlay, + const std::string& description) { + window_->SetOverlayIcon(overlay, description); +} + void Window::SetAutoHideMenuBar(bool auto_hide) { window_->SetAutoHideMenuBar(auto_hide); }