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.
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/. */
5 #ifndef _CC_SIPCC_CALLSERVERINFO_H
6 #define _CC_SIPCC_CALLSERVERINFO_H
8 #include "CC_CallServerInfo.h"
10 #include "common/Wrapper.h"
12 namespace CSF
13 {
14 DECLARE_NS_PTR(CC_SIPCCCallServerInfo);
15 class CC_SIPCCCallServerInfo : public CC_CallServerInfo
16 {
17 private:
18 cc_callserver_ref_t callserverinfo_ref;
20 CC_SIPCCCallServerInfo (cc_callserver_ref_t aCallServerInfo);
22 CSF_DECLARE_WRAP(CC_SIPCCCallServerInfo, cc_callserver_ref_t);
24 public:
25 ~CC_SIPCCCallServerInfo();
27 public:
28 virtual std::string getCallServerName();
29 virtual cc_cucm_mode_t getCallServerMode();
30 virtual cc_ccm_status_t getCallServerStatus();
31 };
32 };
34 #endif