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 | #pragma once |
michael@0 | 6 | |
michael@0 | 7 | #include "CC_Common.h" |
michael@0 | 8 | |
michael@0 | 9 | extern "C" |
michael@0 | 10 | { |
michael@0 | 11 | #include "ccapi_types.h" |
michael@0 | 12 | } |
michael@0 | 13 | |
michael@0 | 14 | namespace CSF |
michael@0 | 15 | { |
michael@0 | 16 | class ECC_API CC_FeatureInfo |
michael@0 | 17 | { |
michael@0 | 18 | public: |
michael@0 | 19 | NS_INLINE_DECL_THREADSAFE_REFCOUNTING(CC_FeatureInfo) |
michael@0 | 20 | protected: |
michael@0 | 21 | CC_FeatureInfo() { } |
michael@0 | 22 | |
michael@0 | 23 | public: |
michael@0 | 24 | //Base class needs dtor to be declared as virtual |
michael@0 | 25 | virtual ~CC_FeatureInfo() {}; |
michael@0 | 26 | |
michael@0 | 27 | /** |
michael@0 | 28 | Get the physical button number on which this feature is configured |
michael@0 | 29 | |
michael@0 | 30 | @return cc_int32_t - button assgn to the feature |
michael@0 | 31 | */ |
michael@0 | 32 | virtual cc_int32_t getButton() = 0; |
michael@0 | 33 | |
michael@0 | 34 | /** |
michael@0 | 35 | Get the featureID |
michael@0 | 36 | |
michael@0 | 37 | @return cc_int32_t - button assgn to the feature |
michael@0 | 38 | */ |
michael@0 | 39 | virtual cc_int32_t getFeatureID() = 0; |
michael@0 | 40 | |
michael@0 | 41 | /** |
michael@0 | 42 | Get the feature Name |
michael@0 | 43 | |
michael@0 | 44 | @return string - handle of the feature created |
michael@0 | 45 | */ |
michael@0 | 46 | virtual std::string getDisplayName() = 0; |
michael@0 | 47 | |
michael@0 | 48 | /** |
michael@0 | 49 | Get the speeddial Number |
michael@0 | 50 | |
michael@0 | 51 | @return string - handle of the feature created |
michael@0 | 52 | */ |
michael@0 | 53 | virtual std::string getSpeedDialNumber() = 0; |
michael@0 | 54 | |
michael@0 | 55 | /** |
michael@0 | 56 | Get the contact |
michael@0 | 57 | |
michael@0 | 58 | @return string - handle of the feature created |
michael@0 | 59 | */ |
michael@0 | 60 | virtual std::string getContact() = 0; |
michael@0 | 61 | |
michael@0 | 62 | /** |
michael@0 | 63 | Get the retrieval prefix |
michael@0 | 64 | |
michael@0 | 65 | @return string - handle of the feature created |
michael@0 | 66 | */ |
michael@0 | 67 | virtual std::string getRetrievalPrefix() = 0; |
michael@0 | 68 | |
michael@0 | 69 | /** |
michael@0 | 70 | Get the feature option mask |
michael@0 | 71 | |
michael@0 | 72 | @return cc_int32_t - button assgn to the feature |
michael@0 | 73 | */ |
michael@0 | 74 | virtual cc_int32_t getFeatureOptionMask() = 0; |
michael@0 | 75 | }; |
michael@0 | 76 | }; |