diff options
Diffstat (limited to 'devtools/server/actors/screenshot.js')
-rw-r--r-- | devtools/server/actors/screenshot.js | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/devtools/server/actors/screenshot.js b/devtools/server/actors/screenshot.js new file mode 100644 index 0000000000..bad5343d5e --- /dev/null +++ b/devtools/server/actors/screenshot.js @@ -0,0 +1,20 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +"use strict"; + +const protocol = require("resource://devtools/shared/protocol.js"); +const { + captureScreenshot, +} = require("resource://devtools/server/actors/utils/capture-screenshot.js"); +const { + screenshotSpec, +} = require("resource://devtools/shared/specs/screenshot.js"); + +exports.ScreenshotActor = protocol.ActorClassWithSpec(screenshotSpec, { + async capture(args) { + const browsingContext = BrowsingContext.get(args.browsingContextID); + return captureScreenshot(args, browsingContext); + }, +}); |