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 |
michael@0 | 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 4 | |
michael@0 | 5 | #include "CSFLog.h" |
michael@0 | 6 | |
michael@0 | 7 | #include "CC_Common.h" |
michael@0 | 8 | |
michael@0 | 9 | #include "CC_SIPCCFeatureInfo.h" |
michael@0 | 10 | #include "CC_SIPCCDeviceInfo.h" |
michael@0 | 11 | |
michael@0 | 12 | extern "C" |
michael@0 | 13 | { |
michael@0 | 14 | #include "ccapi_device.h" |
michael@0 | 15 | #include "ccapi_feature_info.h" |
michael@0 | 16 | } |
michael@0 | 17 | |
michael@0 | 18 | using namespace std; |
michael@0 | 19 | using namespace CSF; |
michael@0 | 20 | |
michael@0 | 21 | CSF_IMPLEMENT_WRAP(CC_SIPCCFeatureInfo, cc_featureinfo_ref_t); |
michael@0 | 22 | |
michael@0 | 23 | CC_SIPCCFeatureInfo::CC_SIPCCFeatureInfo (cc_featureinfo_ref_t featureinfo) : featureinfo_ref(featureinfo) |
michael@0 | 24 | { |
michael@0 | 25 | // CCAPI_Device_retainFeatureInfo(featureinfo); |
michael@0 | 26 | } |
michael@0 | 27 | |
michael@0 | 28 | CC_SIPCCFeatureInfo::~CC_SIPCCFeatureInfo() |
michael@0 | 29 | { |
michael@0 | 30 | // CCAPI_Feature_releaseFeatureInfo(featureinfo_ref); |
michael@0 | 31 | } |
michael@0 | 32 | |
michael@0 | 33 | cc_int32_t CC_SIPCCFeatureInfo::getButton() |
michael@0 | 34 | { |
michael@0 | 35 | return CCAPI_featureInfo_getButton(featureinfo_ref); |
michael@0 | 36 | } |
michael@0 | 37 | |
michael@0 | 38 | cc_int32_t CC_SIPCCFeatureInfo::getFeatureID() |
michael@0 | 39 | { |
michael@0 | 40 | return CCAPI_featureInfo_getFeatureID(featureinfo_ref); |
michael@0 | 41 | } |
michael@0 | 42 | |
michael@0 | 43 | string CC_SIPCCFeatureInfo::getDisplayName() |
michael@0 | 44 | { |
michael@0 | 45 | return CCAPI_featureInfo_getDisplayName(featureinfo_ref); |
michael@0 | 46 | } |
michael@0 | 47 | |
michael@0 | 48 | string CC_SIPCCFeatureInfo::getSpeedDialNumber() |
michael@0 | 49 | { |
michael@0 | 50 | return CCAPI_featureInfo_getSpeedDialNumber(featureinfo_ref); |
michael@0 | 51 | } |
michael@0 | 52 | |
michael@0 | 53 | string CC_SIPCCFeatureInfo::getContact() |
michael@0 | 54 | { |
michael@0 | 55 | return CCAPI_featureInfo_getContact(featureinfo_ref); |
michael@0 | 56 | } |
michael@0 | 57 | |
michael@0 | 58 | string CC_SIPCCFeatureInfo::getRetrievalPrefix() |
michael@0 | 59 | { |
michael@0 | 60 | return CCAPI_featureInfo_getRetrievalPrefix(featureinfo_ref); |
michael@0 | 61 | } |
michael@0 | 62 | |
michael@0 | 63 | cc_int32_t CC_SIPCCFeatureInfo::getFeatureOptionMask() |
michael@0 | 64 | { |
michael@0 | 65 | return CCAPI_featureInfo_getFeatureOptionMask(featureinfo_ref); |
michael@0 | 66 | } |