Thu, 15 Jan 2015 15:59:08 +0100
Implement a real Private Browsing Mode condition by changing the API/ABI;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.
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 file, |
michael@0 | 3 | * You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 4 | |
michael@0 | 5 | #ifndef _WEBRTC_GLOBAL_INFORMATION_H_ |
michael@0 | 6 | #define _WEBRTC_GLOBAL_INFORMATION_H_ |
michael@0 | 7 | |
michael@0 | 8 | #include "nsString.h" |
michael@0 | 9 | |
michael@0 | 10 | namespace sipcc { |
michael@0 | 11 | class PeerConnectionImpl; |
michael@0 | 12 | } |
michael@0 | 13 | |
michael@0 | 14 | namespace mozilla { |
michael@0 | 15 | class ErrorResult; |
michael@0 | 16 | |
michael@0 | 17 | namespace dom { |
michael@0 | 18 | class GlobalObject; |
michael@0 | 19 | class WebrtcGlobalStatisticsCallback; |
michael@0 | 20 | class WebrtcGlobalLoggingCallback; |
michael@0 | 21 | |
michael@0 | 22 | class WebrtcGlobalInformation |
michael@0 | 23 | { |
michael@0 | 24 | public: |
michael@0 | 25 | static void GetAllStats(const GlobalObject& aGlobal, |
michael@0 | 26 | WebrtcGlobalStatisticsCallback& aStatsCallback, |
michael@0 | 27 | ErrorResult& aRv); |
michael@0 | 28 | |
michael@0 | 29 | static void GetLogging(const GlobalObject& aGlobal, |
michael@0 | 30 | const nsAString& aPattern, |
michael@0 | 31 | WebrtcGlobalLoggingCallback& aLoggingCallback, |
michael@0 | 32 | ErrorResult& aRv); |
michael@0 | 33 | |
michael@0 | 34 | static void StoreLongTermICEStatistics(sipcc::PeerConnectionImpl& aPc); |
michael@0 | 35 | |
michael@0 | 36 | private: |
michael@0 | 37 | WebrtcGlobalInformation() MOZ_DELETE; |
michael@0 | 38 | WebrtcGlobalInformation(const WebrtcGlobalInformation& aOrig) MOZ_DELETE; |
michael@0 | 39 | WebrtcGlobalInformation& operator=( |
michael@0 | 40 | const WebrtcGlobalInformation& aRhs) MOZ_DELETE; |
michael@0 | 41 | }; |
michael@0 | 42 | |
michael@0 | 43 | } // namespace dom |
michael@0 | 44 | } // namespace mozilla |
michael@0 | 45 | |
michael@0 | 46 | #endif // _WEBRTC_GLOBAL_INFORMATION_H_ |
michael@0 | 47 |