diff options
Diffstat (limited to 'remote/sessions/frame-script.js')
-rw-r--r-- | remote/sessions/frame-script.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/remote/sessions/frame-script.js b/remote/sessions/frame-script.js new file mode 100644 index 0000000000..ef0c5047c5 --- /dev/null +++ b/remote/sessions/frame-script.js @@ -0,0 +1,12 @@ +/* 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 { ContentProcessSession } = ChromeUtils.import( + "chrome://remote/content/sessions/ContentProcessSession.jsm" +); + +/* global content, docShell */ +new ContentProcessSession(this, docShell.browsingContext, content, docShell); |