tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

sizes.js (430B)


      1 /* This Source Code Form is subject to the terms of the Mozilla Public
      2 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
      3 * You can obtain one at http://mozilla.org/MPL/2.0/. */
      4 "use strict";
      5 
      6 const { actions } = require("resource://devtools/client/memory/constants.js");
      7 
      8 exports.resizeShortestPaths = function (newSize) {
      9  return {
     10    type: actions.RESIZE_SHORTEST_PATHS,
     11    size: newSize,
     12  };
     13 };