Add showDefinitionForSelection webContents proxy method

This commit is contained in:
Kevin Sawicki 2016-06-08 10:19:28 -07:00
parent 6337e93e6d
commit 70996c79ba
7 changed files with 3 additions and 33 deletions

View file

@ -151,6 +151,9 @@ Object.assign(BrowserWindow.prototype, {
},
inspectServiceWorker () {
return this.webContents.inspectServiceWorker()
},
showDefinitionForSelection () {
return this.webContents.showDefinitionForSelection()
}
})