electron/lib/browser/api/web-contents.js

610 lines
18 KiB
JavaScript
Raw Normal View History

2020-03-20 20:28:31 +00:00
'use strict';
2016-01-13 03:55:49 +00:00
2020-03-20 20:28:31 +00:00
const features = process.electronBinding('features');
const { EventEmitter } = require('events');
const electron = require('electron');
const path = require('path');
const url = require('url');
const { app, ipcMain, session } = electron;
2020-03-20 20:28:31 +00:00
const { internalWindowOpen } = require('@electron/internal/browser/guest-window-manager');
const NavigationController = require('@electron/internal/browser/navigation-controller');
const { ipcMainInternal } = require('@electron/internal/browser/ipc-main-internal');
const ipcMainUtils = require('@electron/internal/browser/ipc-main-internal-utils');
const { convertFeaturesString } = require('@electron/internal/common/parse-features-string');
2020-03-20 20:28:31 +00:00
const { MessagePortMain } = require('@electron/internal/browser/message-port-main');
// session is not used here, the purpose is to make sure session is initalized
// before the webContents module.
2017-11-23 21:42:48 +00:00
// eslint-disable-next-line
session
2016-01-12 02:40:23 +00:00
2020-03-20 20:28:31 +00:00
let nextId = 0;
const getNextId = function () {
2020-03-20 20:28:31 +00:00
return ++nextId;
};
2016-01-12 02:40:23 +00:00
2016-06-01 06:24:53 +00:00
// Stock page sizes
const PDFPageSizes = {
2016-01-12 02:40:23 +00:00
A5: {
custom_display_name: 'A5',
2016-01-12 02:40:23 +00:00
height_microns: 210000,
name: 'ISO_A5',
2016-01-12 02:40:23 +00:00
width_microns: 148000
},
A4: {
custom_display_name: 'A4',
2016-01-12 02:40:23 +00:00
height_microns: 297000,
name: 'ISO_A4',
is_default: 'true',
2016-01-12 02:40:23 +00:00
width_microns: 210000
},
A3: {
custom_display_name: 'A3',
2016-01-12 02:40:23 +00:00
height_microns: 420000,
name: 'ISO_A3',
2016-01-12 02:40:23 +00:00
width_microns: 297000
},
Legal: {
custom_display_name: 'Legal',
2016-01-12 02:40:23 +00:00
height_microns: 355600,
name: 'NA_LEGAL',
2016-01-12 02:40:23 +00:00
width_microns: 215900
},
Letter: {
custom_display_name: 'Letter',
2016-01-12 02:40:23 +00:00
height_microns: 279400,
name: 'NA_LETTER',
2016-01-12 02:40:23 +00:00
width_microns: 215900
},
Tabloid: {
height_microns: 431800,
name: 'NA_LEDGER',
2016-01-12 02:40:23 +00:00
width_microns: 279400,
custom_display_name: 'Tabloid'
2016-01-12 02:40:23 +00:00
}
2020-03-20 20:28:31 +00:00
};
2016-01-12 02:40:23 +00:00
2016-06-01 06:24:53 +00:00
// Default printing setting
const defaultPrintingSetting = {
// Customizable.
pageRange: [],
2016-06-01 06:24:53 +00:00
mediaSize: {},
landscape: false,
headerFooterEnabled: false,
marginsType: 0,
scaleFactor: 100,
shouldPrintBackgrounds: false,
shouldPrintSelectionOnly: false,
// Non-customizable.
2016-06-01 06:24:53 +00:00
printWithCloudPrint: false,
printWithPrivet: false,
printWithExtension: false,
pagesPerSheet: 1,
isFirstRequest: false,
previewUIID: 0,
previewModifiable: true,
printToPDF: true,
2016-06-01 06:24:53 +00:00
deviceName: 'Save as PDF',
generateDraftData: true,
dpiHorizontal: 72,
dpiVertical: 72,
rasterizePDF: false,
2016-06-01 06:24:53 +00:00
duplex: 0,
copies: 1,
// 2 = color - see ColorModel in //printing/print_job_constants.h
color: 2,
collate: true
2020-03-20 20:28:31 +00:00
};
2016-06-01 06:24:53 +00:00
// JavaScript implementations of WebContents.
2020-03-20 20:28:31 +00:00
const binding = process.electronBinding('web_contents');
const { WebContents } = binding;
2016-08-02 11:38:35 +00:00
2020-03-20 20:28:31 +00:00
Object.setPrototypeOf(NavigationController.prototype, EventEmitter.prototype);
Object.setPrototypeOf(WebContents.prototype, NavigationController.prototype);
2016-08-02 11:38:35 +00:00
// WebContents::send(channel, args..)
// WebContents::sendToAll(channel, args..)
WebContents.prototype.send = function (channel, ...args) {
if (typeof channel !== 'string') {
2020-03-20 20:28:31 +00:00
throw new Error('Missing required channel argument');
}
2020-03-20 20:28:31 +00:00
const internal = false;
const sendToAll = false;
2020-03-20 20:28:31 +00:00
return this._send(internal, sendToAll, channel, args);
};
WebContents.prototype.postMessage = function (...args) {
if (Array.isArray(args[2])) {
2020-03-20 20:28:31 +00:00
args[2] = args[2].map(o => o instanceof MessagePortMain ? o._internalPort : o);
}
2020-03-20 20:28:31 +00:00
this._postMessage(...args);
};
WebContents.prototype.sendToAll = function (channel, ...args) {
if (typeof channel !== 'string') {
2020-03-20 20:28:31 +00:00
throw new Error('Missing required channel argument');
}
2020-03-20 20:28:31 +00:00
const internal = false;
const sendToAll = true;
2020-03-20 20:28:31 +00:00
return this._send(internal, sendToAll, channel, args);
};
WebContents.prototype._sendInternal = function (channel, ...args) {
if (typeof channel !== 'string') {
2020-03-20 20:28:31 +00:00
throw new Error('Missing required channel argument');
}
2020-03-20 20:28:31 +00:00
const internal = true;
const sendToAll = false;
2020-03-20 20:28:31 +00:00
return this._send(internal, sendToAll, channel, args);
};
WebContents.prototype._sendInternalToAll = function (channel, ...args) {
if (typeof channel !== 'string') {
2020-03-20 20:28:31 +00:00
throw new Error('Missing required channel argument');
}
2020-03-20 20:28:31 +00:00
const internal = true;
const sendToAll = true;
2020-03-20 20:28:31 +00:00
return this._send(internal, sendToAll, channel, args);
};
WebContents.prototype.sendToFrame = function (frameId, channel, ...args) {
if (typeof channel !== 'string') {
2020-03-20 20:28:31 +00:00
throw new Error('Missing required channel argument');
} else if (typeof frameId !== 'number') {
2020-03-20 20:28:31 +00:00
throw new Error('Missing required frameId argument');
}
2020-03-20 20:28:31 +00:00
const internal = false;
const sendToAll = false;
2020-03-20 20:28:31 +00:00
return this._sendToFrame(internal, sendToAll, frameId, channel, args);
};
WebContents.prototype._sendToFrameInternal = function (frameId, channel, ...args) {
if (typeof channel !== 'string') {
2020-03-20 20:28:31 +00:00
throw new Error('Missing required channel argument');
} else if (typeof frameId !== 'number') {
2020-03-20 20:28:31 +00:00
throw new Error('Missing required frameId argument');
}
2020-03-20 20:28:31 +00:00
const internal = true;
const sendToAll = false;
2020-03-20 20:28:31 +00:00
return this._sendToFrame(internal, sendToAll, frameId, channel, args);
};
2016-01-13 03:55:49 +00:00
// Following methods are mapped to webFrame.
const webFrameMethods = [
2016-12-19 23:50:47 +00:00
'insertCSS',
2016-01-13 03:55:49 +00:00
'insertText',
2019-06-17 15:39:36 +00:00
'removeInsertedCSS',
2018-02-20 13:57:48 +00:00
'setVisualZoomLevelLimits'
2020-03-20 20:28:31 +00:00
];
for (const method of webFrameMethods) {
WebContents.prototype[method] = function (...args) {
2020-03-20 20:28:31 +00:00
return ipcMainUtils.invokeInWebContents(this, false, 'ELECTRON_INTERNAL_RENDERER_WEB_FRAME_METHOD', method, ...args);
};
}
2016-01-12 02:40:23 +00:00
const waitTillCanExecuteJavaScript = async (webContents) => {
2020-03-20 20:28:31 +00:00
if (webContents.getURL() && !webContents.isLoadingMainFrame()) return;
return new Promise((resolve) => {
webContents.once('did-stop-loading', () => {
2020-03-20 20:28:31 +00:00
resolve();
});
});
};
// Make sure WebContents::executeJavaScript would run the code only when the
// WebContents has been loaded.
WebContents.prototype.executeJavaScript = async function (code, hasUserGesture) {
2020-03-20 20:28:31 +00:00
await waitTillCanExecuteJavaScript(this);
return ipcMainUtils.invokeInWebContents(this, false, 'ELECTRON_INTERNAL_RENDERER_WEB_FRAME_METHOD', 'executeJavaScript', code, hasUserGesture);
};
WebContents.prototype.executeJavaScriptInIsolatedWorld = async function (code, hasUserGesture) {
2020-03-20 20:28:31 +00:00
await waitTillCanExecuteJavaScript(this);
return ipcMainUtils.invokeInWebContents(this, false, 'ELECTRON_INTERNAL_RENDERER_WEB_FRAME_METHOD', 'executeJavaScriptInIsolatedWorld', code, hasUserGesture);
};
// Translate the options of printToPDF.
WebContents.prototype.printToPDF = function (options) {
const printSettings = {
...defaultPrintingSetting,
requestID: getNextId()
2020-03-20 20:28:31 +00:00
};
if (options.landscape !== undefined) {
if (typeof options.landscape !== 'boolean') {
2020-03-20 20:28:31 +00:00
const error = new Error('landscape must be a Boolean');
return Promise.reject(error);
}
2020-03-20 20:28:31 +00:00
printSettings.landscape = options.landscape;
}
if (options.scaleFactor !== undefined) {
if (typeof options.scaleFactor !== 'number') {
2020-03-20 20:28:31 +00:00
const error = new Error('scaleFactor must be a Number');
return Promise.reject(error);
}
2020-03-20 20:28:31 +00:00
printSettings.scaleFactor = options.scaleFactor;
}
if (options.marginsType !== undefined) {
if (typeof options.marginsType !== 'number') {
2020-03-20 20:28:31 +00:00
const error = new Error('marginsType must be a Number');
return Promise.reject(error);
}
2020-03-20 20:28:31 +00:00
printSettings.marginsType = options.marginsType;
}
if (options.printSelectionOnly !== undefined) {
if (typeof options.printSelectionOnly !== 'boolean') {
2020-03-20 20:28:31 +00:00
const error = new Error('printSelectionOnly must be a Boolean');
return Promise.reject(error);
}
2020-03-20 20:28:31 +00:00
printSettings.shouldPrintSelectionOnly = options.printSelectionOnly;
}
if (options.printBackground !== undefined) {
if (typeof options.printBackground !== 'boolean') {
2020-03-20 20:28:31 +00:00
const error = new Error('printBackground must be a Boolean');
return Promise.reject(error);
}
2020-03-20 20:28:31 +00:00
printSettings.shouldPrintBackgrounds = options.printBackground;
}
if (options.pageRanges !== undefined) {
2020-03-20 20:28:31 +00:00
const pageRanges = options.pageRanges;
if (!Object.prototype.hasOwnProperty.call(pageRanges, 'from') || !Object.prototype.hasOwnProperty.call(pageRanges, 'to')) {
2020-03-20 20:28:31 +00:00
const error = new Error('pageRanges must be an Object with \'from\' and \'to\' properties');
return Promise.reject(error);
}
if (typeof pageRanges.from !== 'number') {
2020-03-20 20:28:31 +00:00
const error = new Error('pageRanges.from must be a Number');
return Promise.reject(error);
}
if (typeof pageRanges.to !== 'number') {
2020-03-20 20:28:31 +00:00
const error = new Error('pageRanges.to must be a Number');
return Promise.reject(error);
}
// Chromium uses 1-based page ranges, so increment each by 1.
printSettings.pageRange = [{
from: pageRanges.from + 1,
to: pageRanges.to + 1
2020-03-20 20:28:31 +00:00
}];
}
if (options.headerFooter !== undefined) {
2020-03-20 20:28:31 +00:00
const headerFooter = options.headerFooter;
printSettings.headerFooterEnabled = true;
if (typeof headerFooter === 'object') {
if (!headerFooter.url || !headerFooter.title) {
2020-03-20 20:28:31 +00:00
const error = new Error('url and title properties are required for headerFooter');
return Promise.reject(error);
}
if (typeof headerFooter.title !== 'string') {
2020-03-20 20:28:31 +00:00
const error = new Error('headerFooter.title must be a String');
return Promise.reject(error);
}
2020-03-20 20:28:31 +00:00
printSettings.title = headerFooter.title;
if (typeof headerFooter.url !== 'string') {
2020-03-20 20:28:31 +00:00
const error = new Error('headerFooter.url must be a String');
return Promise.reject(error);
}
2020-03-20 20:28:31 +00:00
printSettings.url = headerFooter.url;
} else {
2020-03-20 20:28:31 +00:00
const error = new Error('headerFooter must be an Object');
return Promise.reject(error);
}
2016-01-13 03:55:49 +00:00
}
// Optionally set size for PDF.
if (options.pageSize !== undefined) {
2020-03-20 20:28:31 +00:00
const pageSize = options.pageSize;
if (typeof pageSize === 'object') {
if (!pageSize.height || !pageSize.width) {
2020-03-20 20:28:31 +00:00
const error = new Error('height and width properties are required for pageSize');
return Promise.reject(error);
}
// Dimensions in Microns
// 1 meter = 10^6 microns
printSettings.mediaSize = {
name: 'CUSTOM',
custom_display_name: 'Custom',
height_microns: Math.ceil(pageSize.height),
width_microns: Math.ceil(pageSize.width)
2020-03-20 20:28:31 +00:00
};
} else if (PDFPageSizes[pageSize]) {
2020-03-20 20:28:31 +00:00
printSettings.mediaSize = PDFPageSizes[pageSize];
} else {
2020-03-20 20:28:31 +00:00
const error = new Error(`Unsupported pageSize: ${pageSize}`);
return Promise.reject(error);
}
} else {
2020-03-20 20:28:31 +00:00
printSettings.mediaSize = PDFPageSizes.A4;
}
2016-02-22 14:00:21 +00:00
// Chromium expects this in a 0-100 range number, not as float
2020-03-20 20:28:31 +00:00
printSettings.scaleFactor = Math.ceil(printSettings.scaleFactor) % 100;
// PrinterType enum from //printing/print_job_constants.h
2020-03-20 20:28:31 +00:00
printSettings.printerType = 2;
if (features.isPrintingEnabled()) {
2020-03-20 20:28:31 +00:00
return this._printToPDF(printSettings);
} else {
2020-03-20 20:28:31 +00:00
const error = new Error('Printing feature is disabled');
return Promise.reject(error);
}
2020-03-20 20:28:31 +00:00
};
WebContents.prototype.print = function (options = {}, callback) {
// TODO(codebytere): deduplicate argument sanitization by moving rest of
// print param logic into new file shared between printToPDF and print
if (typeof options === 'object') {
// Optionally set size for PDF.
if (options.pageSize !== undefined) {
2020-03-20 20:28:31 +00:00
const pageSize = options.pageSize;
if (typeof pageSize === 'object') {
if (!pageSize.height || !pageSize.width) {
2020-03-20 20:28:31 +00:00
throw new Error('height and width properties are required for pageSize');
}
// Dimensions in Microns - 1 meter = 10^6 microns
options.mediaSize = {
name: 'CUSTOM',
custom_display_name: 'Custom',
height_microns: Math.ceil(pageSize.height),
width_microns: Math.ceil(pageSize.width)
2020-03-20 20:28:31 +00:00
};
} else if (PDFPageSizes[pageSize]) {
2020-03-20 20:28:31 +00:00
options.mediaSize = PDFPageSizes[pageSize];
} else {
2020-03-20 20:28:31 +00:00
throw new Error(`Unsupported pageSize: ${pageSize}`);
}
}
}
if (features.isPrintingEnabled()) {
if (callback) {
2020-03-20 20:28:31 +00:00
this._print(options, callback);
} else {
2020-03-20 20:28:31 +00:00
this._print(options);
}
} else {
2020-03-20 20:28:31 +00:00
console.error('Error: Printing feature is disabled.');
}
2020-03-20 20:28:31 +00:00
};
WebContents.prototype.getPrinters = function () {
if (features.isPrintingEnabled()) {
2020-03-20 20:28:31 +00:00
return this._getPrinters();
} else {
2020-03-20 20:28:31 +00:00
console.error('Error: Printing feature is disabled.');
return [];
}
2020-03-20 20:28:31 +00:00
};
WebContents.prototype.loadFile = function (filePath, options = {}) {
if (typeof filePath !== 'string') {
2020-03-20 20:28:31 +00:00
throw new Error('Must pass filePath as a string');
}
2020-03-20 20:28:31 +00:00
const { query, search, hash } = options;
return this.loadURL(url.format({
protocol: 'file',
slashes: true,
pathname: path.resolve(app.getAppPath(), filePath),
query,
search,
hash
2020-03-20 20:28:31 +00:00
}));
};
const addReplyToEvent = (event) => {
event.reply = (...args) => {
2020-03-20 20:28:31 +00:00
event.sender.sendToFrame(event.frameId, ...args);
};
};
const addReplyInternalToEvent = (event) => {
Object.defineProperty(event, '_replyInternal', {
configurable: false,
enumerable: false,
value: (...args) => {
2020-03-20 20:28:31 +00:00
event.sender._sendToFrameInternal(event.frameId, ...args);
}
2020-03-20 20:28:31 +00:00
});
};
const addReturnValueToEvent = (event) => {
Object.defineProperty(event, 'returnValue', {
set: (value) => event.sendReply([value]),
get: () => {}
2020-03-20 20:28:31 +00:00
});
};
// Add JavaScript wrappers for WebContents class.
WebContents.prototype._init = function () {
// The navigation controller.
2020-03-20 20:28:31 +00:00
NavigationController.call(this, this);
// Every remote callback from renderer process would add a listener to the
// render-view-deleted event, so ignore the listeners warning.
2020-03-20 20:28:31 +00:00
this.setMaxListeners(0);
2016-01-14 18:35:29 +00:00
// Dispatch IPC messages to the ipc module.
this.on('-ipc-message', function (event, internal, channel, args) {
if (internal) {
2020-03-20 20:28:31 +00:00
addReplyInternalToEvent(event);
ipcMainInternal.emit(channel, event, ...args);
} else {
2020-03-20 20:28:31 +00:00
addReplyToEvent(event);
this.emit('ipc-message', event, channel, ...args);
ipcMain.emit(channel, event, ...args);
}
2020-03-20 20:28:31 +00:00
});
this.on('-ipc-invoke', function (event, internal, channel, args) {
2020-03-20 20:28:31 +00:00
event._reply = (result) => event.sendReply({ result });
event._throw = (error) => {
2020-03-20 20:28:31 +00:00
console.error(`Error occurred in handler for '${channel}':`, error);
event.sendReply({ error: error.toString() });
};
const target = internal ? ipcMainInternal : ipcMain;
if (target._invokeHandlers.has(channel)) {
2020-03-20 20:28:31 +00:00
target._invokeHandlers.get(channel)(event, ...args);
} else {
2020-03-20 20:28:31 +00:00
event._throw(`No handler registered for '${channel}'`);
}
2020-03-20 20:28:31 +00:00
});
this.on('-ipc-message-sync', function (event, internal, channel, args) {
2020-03-20 20:28:31 +00:00
addReturnValueToEvent(event);
if (internal) {
2020-03-20 20:28:31 +00:00
addReplyInternalToEvent(event);
ipcMainInternal.emit(channel, event, ...args);
} else {
2020-03-20 20:28:31 +00:00
addReplyToEvent(event);
this.emit('ipc-message-sync', event, channel, ...args);
ipcMain.emit(channel, event, ...args);
}
2020-03-20 20:28:31 +00:00
});
this.on('-ipc-ports', function (event, internal, channel, message, ports) {
2020-03-20 20:28:31 +00:00
event.ports = ports.map(p => new MessagePortMain(p));
ipcMain.emit(channel, event, message);
});
2016-01-14 18:35:29 +00:00
// Handle context menu action request from pepper plugin.
this.on('pepper-context-menu', function (event, params, callback) {
2017-12-20 09:48:09 +00:00
// Access Menu via electron.Menu to prevent circular require.
2020-03-20 20:28:31 +00:00
const menu = electron.Menu.buildFromTemplate(params.menu);
menu.popup({
window: event.sender.getOwnerBrowserWindow(),
x: params.x,
y: params.y,
callback
2020-03-20 20:28:31 +00:00
});
});
2016-01-12 02:40:23 +00:00
this.on('crashed', (event, ...args) => {
2020-03-20 20:28:31 +00:00
app.emit('renderer-process-crashed', event, this, ...args);
});
// The devtools requests the webContents to reload.
2016-08-02 11:38:35 +00:00
this.on('devtools-reload-page', function () {
2020-03-20 20:28:31 +00:00
this.reload();
});
if (this.getType() !== 'remote') {
// Make new windows requested by links behave like "window.open".
this.on('-new-window', (event, url, frameName, disposition,
rawFeatures, referrer, postData) => {
const { options, additionalFeatures } = convertFeaturesString(rawFeatures, frameName);
const mergedOptions = {
show: true,
width: 800,
height: 600,
...options
2020-03-20 20:28:31 +00:00
};
internalWindowOpen(event, url, referrer, frameName, disposition, mergedOptions, additionalFeatures, postData);
2020-03-20 20:28:31 +00:00
});
// Create a new browser window for the native implementation of
// "window.open", used in sandbox and nativeWindowOpen mode.
this.on('-add-new-contents', (event, webContents, disposition,
userGesture, left, top, width, height, url, frameName,
referrer, rawFeatures, postData) => {
if ((disposition !== 'foreground-tab' && disposition !== 'new-window' &&
disposition !== 'background-tab')) {
2020-03-20 20:28:31 +00:00
event.preventDefault();
return;
}
const { options, additionalFeatures } = convertFeaturesString(rawFeatures, frameName);
const mergedOptions = {
show: true,
width: 800,
height: 600,
webContents,
...options
2020-03-20 20:28:31 +00:00
};
internalWindowOpen(event, url, referrer, frameName, disposition, mergedOptions, additionalFeatures, postData);
2020-03-20 20:28:31 +00:00
});
}
this.on('login', (event, ...args) => {
2020-03-20 20:28:31 +00:00
app.emit('login', event, this, ...args);
});
2020-03-20 20:28:31 +00:00
const event = process.electronBinding('event').createEmpty();
app.emit('web-contents-created', event, this);
2016-01-12 02:40:23 +00:00
// Properties
Object.defineProperty(this, 'audioMuted', {
get: () => this.isAudioMuted(),
set: (muted) => this.setAudioMuted(muted)
2020-03-20 20:28:31 +00:00
});
Object.defineProperty(this, 'userAgent', {
get: () => this.getUserAgent(),
set: (agent) => this.setUserAgent(agent)
2020-03-20 20:28:31 +00:00
});
Object.defineProperty(this, 'zoomLevel', {
get: () => this.getZoomLevel(),
set: (level) => this.setZoomLevel(level)
2020-03-20 20:28:31 +00:00
});
Object.defineProperty(this, 'zoomFactor', {
get: () => this.getZoomFactor(),
set: (factor) => this.setZoomFactor(factor)
2020-03-20 20:28:31 +00:00
});
Object.defineProperty(this, 'frameRate', {
get: () => this.getFrameRate(),
set: (rate) => this.setFrameRate(rate)
2020-03-20 20:28:31 +00:00
});
};
2016-08-02 11:38:35 +00:00
// Public APIs.
2016-06-13 15:59:03 +00:00
module.exports = {
2016-06-13 16:06:42 +00:00
create (options = {}) {
2020-03-20 20:28:31 +00:00
return binding.create(options);
2016-06-13 15:59:03 +00:00
},
fromId (id) {
2020-03-20 20:28:31 +00:00
return binding.fromId(id);
2016-07-13 15:54:40 +00:00
},
getFocusedWebContents () {
2020-03-20 20:28:31 +00:00
let focused = null;
for (const contents of binding.getAllWebContents()) {
2020-03-20 20:28:31 +00:00
if (!contents.isFocused()) continue;
if (focused == null) focused = contents;
// Return webview web contents which may be embedded inside another
// web contents that is also reporting as focused
2020-03-20 20:28:31 +00:00
if (contents.getType() === 'webview') return contents;
}
2020-03-20 20:28:31 +00:00
return focused;
2016-07-14 15:59:49 +00:00
},
getAllWebContents () {
2020-03-20 20:28:31 +00:00
return binding.getAllWebContents();
2016-06-13 15:59:03 +00:00
}
2020-03-20 20:28:31 +00:00
};