Merge pull request #79 from brunoqueiros/flash_support

flash support #2

Former-commit-id: b0672ef48c8431c7480b9b3185ed231c23179398
This commit is contained in:
Jia Hao 2016-02-06 01:06:35 +08:00
commit add30d5a80
2 changed files with 5 additions and 0 deletions

View File

@ -0,0 +1 @@
6f57ffe565395a28195d111c5f80bcf3e87817b2

View File

@ -18,6 +18,10 @@ if (appArgs.insecure) {
app.commandLine.appendSwitch('ignore-certificate-errors');
}
// Flash plugin
app.commandLine.appendSwitch('ppapi-flash-path', path.join(__dirname, '../plugins', 'libpepflashplayer.so'));
app.commandLine.appendSwitch('ppapi-flash-version', '16.0.0.305');
// do nothing for setDockBadge if not OSX
let setDockBadge = () => {};