gtk: Add BrowserWindow.setSkipTaskbar API.
This commit is contained in:
parent
a8cb839734
commit
70d3365414
12 changed files with 29 additions and 0 deletions
|
@ -259,6 +259,10 @@ void Window::FlashFrame(bool flash) {
|
|||
window_->FlashFrame(flash);
|
||||
}
|
||||
|
||||
void Window::SetSkipTaskbar(bool skip) {
|
||||
window_->SetSkipTaskbar(skip);
|
||||
}
|
||||
|
||||
void Window::SetKiosk(bool kiosk) {
|
||||
window_->SetKiosk(kiosk);
|
||||
}
|
||||
|
@ -366,6 +370,7 @@ void Window::BuildPrototype(v8::Isolate* isolate,
|
|||
.SetMethod("setTitle", &Window::SetTitle)
|
||||
.SetMethod("getTitle", &Window::GetTitle)
|
||||
.SetMethod("flashFrame", &Window::FlashFrame)
|
||||
.SetMethod("setSkipTaskbar", &Window::SetSkipTaskbar)
|
||||
.SetMethod("setKiosk", &Window::SetKiosk)
|
||||
.SetMethod("isKiosk", &Window::IsKiosk)
|
||||
.SetMethod("setRepresentedFilename", &Window::SetRepresentedFilename)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue