tor-browser

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

nsISimpleURIMutator.idl (536B)


      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
      3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
      4 
      5 #include "nsISupports.idl"
      6 interface nsIURIMutator;
      7 
      8 [scriptable, builtinclass, uuid(e055bddd-f3c2-404b-adec-db9304e93be2)]
      9 interface nsISimpleURIMutator : nsISupports
     10 {
     11    /**
     12     * Same behaviour as nsIURISetSpec.setSpec() but filters whitespace.
     13     */
     14    nsIURIMutator setSpecAndFilterWhitespace(in AUTF8String aSpec);
     15 };