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 #pragma once
7 #include "CC_Common.h"
9 #include <vector>
11 extern "C"
12 {
13 #include "ccapi_types.h"
14 }
16 namespace CSF
17 {
18 class ECC_API CC_CallServerInfo
19 {
20 public:
21 NS_INLINE_DECL_THREADSAFE_REFCOUNTING(CC_CallServerInfo)
22 protected:
23 CC_CallServerInfo() { }
25 public:
26 //Base class needs dtor to be declared as virtual
27 virtual ~CC_CallServerInfo() {};
29 /**
30 gets call server name
32 @returns name of the call server
33 */
34 virtual std::string getCallServerName() = 0;
36 /**
37 gets call server mode
39 @returns - mode of the call server
40 */
41 virtual cc_cucm_mode_t getCallServerMode() = 0;
43 /**
44 gets calls erver name
46 @returns status of the call server
47 */
48 virtual cc_ccm_status_t getCallServerStatus() = 0;
49 };
50 };