Add BrowserWindow.isVisible() API.

This commit is contained in:
Cheng Zhao 2013-10-03 08:27:59 +08:00
parent 2024ae5dba
commit 88ce2a5390
8 changed files with 23 additions and 0 deletions

View file

@ -231,6 +231,10 @@ void NativeWindowWin::Unmaximize() {
window_->Restore();
}
bool NativeWindowWin::IsVisible() {
return window_->IsVisible();
}
void NativeWindowWin::Minimize() {
window_->Minimize();
}