tor-browser

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

WebRtcLog.h (545B)


      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 #ifndef WEBRTCLOG_H_
      6 #define WEBRTCLOG_H_
      7 
      8 #include "nsISupports.h"
      9 #include "nsStringFwd.h"
     10 
     11 nsCString StartAecLog();
     12 void StopAecLog();
     13 
     14 class WebrtcLogSinkHandle {
     15  NS_INLINE_DECL_PURE_VIRTUAL_REFCOUNTING
     16 
     17 protected:
     18  virtual ~WebrtcLogSinkHandle() = default;
     19 };
     20 
     21 already_AddRefed<WebrtcLogSinkHandle> EnsureWebrtcLogging();
     22 
     23 #endif