Add BrowserWindow.isMaximized API.

This commit is contained in:
Cheng Zhao 2014-07-26 13:58:26 +08:00
parent e8d59c4326
commit ce50b38a75
8 changed files with 21 additions and 0 deletions

View file

@ -187,6 +187,10 @@ void NativeWindowViews::Restore() {
window_->Restore();
}
bool NativeWindowViews::IsMinimized() {
return window_->IsMinimized();
}
void NativeWindowViews::SetFullscreen(bool fullscreen) {
window_->SetFullscreen(fullscreen);
}