2018-09-22 12:28:50 +00:00
|
|
|
'use strict'
|
2019-01-30 20:39:55 +00:00
|
|
|
const { deprecate } = require('electron')
|
|
|
|
const contentTracing = process.atomBinding('content_tracing')
|
2018-09-22 12:28:50 +00:00
|
|
|
|
2019-01-30 20:39:55 +00:00
|
|
|
contentTracing.getCategories = deprecate.promisify(contentTracing.getCategories)
|
|
|
|
|
|
|
|
module.exports = contentTracing
|