tor-browser

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

nsICompressConvStats.idl (592B)


      1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
      2 /* This Source Code Form is subject to the terms of the Mozilla Public
      3 * License, v. 2.0. If a copy of the MPL was not distributed with this
      4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
      5 
      6 #include "nsISupports.idl"
      7 
      8 /**
      9 * nsICompressConvStats
     10 *
     11 * This interface allows for the observation of decoded resource sizes
     12 */
     13 [builtinclass, scriptable, uuid(58172ad0-46a9-4893-8fde-cd909c10792a)]
     14 interface nsICompressConvStats : nsISupports
     15 {
     16    readonly attribute uint64_t decodedDataLength;
     17 };