re-add warning removed in https://github.com/electron/electron/pull/11013
This commit is contained in:
parent
5fa29fcf58
commit
24f60dcd1b
1 changed files with 5 additions and 9 deletions
|
@ -4,7 +4,7 @@ const {spawn} = require('child_process')
|
||||||
const os = require('os')
|
const os = require('os')
|
||||||
const path = require('path')
|
const path = require('path')
|
||||||
const electron = require('electron')
|
const electron = require('electron')
|
||||||
const {app} = process.type === 'browser' ? electron : electron.remote
|
const {app, deprecate} = process.type === 'browser' ? electron : electron.remote
|
||||||
const binding = process.atomBinding('crash_reporter')
|
const binding = process.atomBinding('crash_reporter')
|
||||||
|
|
||||||
class CrashReporter {
|
class CrashReporter {
|
||||||
|
@ -106,14 +106,10 @@ class CrashReporter {
|
||||||
|
|
||||||
// TODO(2.0) Remove
|
// TODO(2.0) Remove
|
||||||
setExtraParameter (key, value) {
|
setExtraParameter (key, value) {
|
||||||
// TODO(alexeykuzmin): Warning disabled since it caused
|
if (!process.noDeprecations) {
|
||||||
// a couple of Crash Reported tests to time out on Mac. Add it back.
|
deprecate.warn('crashReporter.setExtraParameter',
|
||||||
// https://github.com/electron/electron/issues/11012
|
'crashReporter.addExtraParameter or crashReporter.removeExtraParameter')
|
||||||
|
}
|
||||||
// if (!process.noDeprecations) {
|
|
||||||
// deprecate.warn('crashReporter.setExtraParameter',
|
|
||||||
// 'crashReporter.addExtraParameter or crashReporter.removeExtraParameter')
|
|
||||||
// }
|
|
||||||
binding.setExtraParameter(key, value)
|
binding.setExtraParameter(key, value)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue