addon-sdk/source/examples/toolbar-api/lib/main.js

Sat, 03 Jan 2015 20:18:00 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Sat, 03 Jan 2015 20:18:00 +0100
branch
TOR_BUG_3246
changeset 7
129ffea94266
permissions
-rw-r--r--

Conditionally enable double key logic according to:
private browsing mode or privacy.thirdparty.isolate preference and
implement in GetCookieStringCommon and FindCookie where it counts...
With some reservations of how to convince FindCookie users to test
condition and pass a nullptr when disabling double key logic.

michael@0 1 /* This Source Code Form is subject to the terms of the Mozilla Public
michael@0 2 * License, v. 2.0. If a copy of the MPL was not distributed with this
michael@0 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
michael@0 4 "use strict";
michael@0 5
michael@0 6 const { Toolbar } = require("sdk/ui/toolbar");
michael@0 7 const { Frame } = require("sdk/ui/frame");
michael@0 8 const { ActionButton } = require("sdk/ui/button/action");
michael@0 9
michael@0 10 let button = new ActionButton({
michael@0 11 id: "button",
michael@0 12 label: "send!",
michael@0 13 icon: "./favicon.ico",
michael@0 14 onClick: () => {
michael@0 15 frame.postMessage({
michael@0 16 hello: "content"
michael@0 17 });
michael@0 18 }
michael@0 19 });
michael@0 20
michael@0 21 let frame = new Frame({
michael@0 22 url: "./index.html",
michael@0 23 onAttach: () => {
michael@0 24 console.log("frame was attached");
michael@0 25 },
michael@0 26 onReady: () => {
michael@0 27 console.log("frame document was loaded");
michael@0 28 },
michael@0 29 onLoad: () => {
michael@0 30 console.log("frame load complete");
michael@0 31 },
michael@0 32 onMessage: (event) => {
michael@0 33 console.log("got message from frame content", event);
michael@0 34 if (event.data === "ping!")
michael@0 35 event.source.postMessage("pong!", event.source.origin);
michael@0 36 }
michael@0 37 });
michael@0 38 let toolbar = new Toolbar({
michael@0 39 items: [frame],
michael@0 40 title: "Addon Demo",
michael@0 41 hidden: false,
michael@0 42 onShow: () => {
michael@0 43 console.log("toolbar was shown");
michael@0 44 },
michael@0 45 onHide: () => {
michael@0 46 console.log("toolbar was hidden");
michael@0 47 }
michael@0 48 });

mercurial