Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
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 | #ifndef nsContentBlocker_h__ |
michael@0 | 5 | #define nsContentBlocker_h__ |
michael@0 | 6 | |
michael@0 | 7 | #include "nsIContentPolicy.h" |
michael@0 | 8 | #include "nsIObserver.h" |
michael@0 | 9 | #include "nsWeakReference.h" |
michael@0 | 10 | #include "nsIPermissionManager.h" |
michael@0 | 11 | #include "nsIPrefBranch.h" |
michael@0 | 12 | #include "mozilla/Attributes.h" |
michael@0 | 13 | |
michael@0 | 14 | class nsIPrefBranch; |
michael@0 | 15 | |
michael@0 | 16 | //////////////////////////////////////////////////////////////////////////////// |
michael@0 | 17 | |
michael@0 | 18 | class nsContentBlocker MOZ_FINAL : public nsIContentPolicy, |
michael@0 | 19 | public nsIObserver, |
michael@0 | 20 | public nsSupportsWeakReference |
michael@0 | 21 | { |
michael@0 | 22 | public: |
michael@0 | 23 | |
michael@0 | 24 | // nsISupports |
michael@0 | 25 | NS_DECL_ISUPPORTS |
michael@0 | 26 | NS_DECL_NSICONTENTPOLICY |
michael@0 | 27 | NS_DECL_NSIOBSERVER |
michael@0 | 28 | |
michael@0 | 29 | nsContentBlocker(); |
michael@0 | 30 | nsresult Init(); |
michael@0 | 31 | |
michael@0 | 32 | private: |
michael@0 | 33 | ~nsContentBlocker() {} |
michael@0 | 34 | |
michael@0 | 35 | void PrefChanged(nsIPrefBranch *, const char *); |
michael@0 | 36 | nsresult TestPermission(nsIURI *aCurrentURI, |
michael@0 | 37 | nsIURI *aFirstURI, |
michael@0 | 38 | int32_t aContentType, |
michael@0 | 39 | bool *aPermission, |
michael@0 | 40 | bool *aFromPrefs); |
michael@0 | 41 | |
michael@0 | 42 | nsCOMPtr<nsIPermissionManager> mPermissionManager; |
michael@0 | 43 | nsCOMPtr<nsIPrefBranch> mPrefBranchInternal; |
michael@0 | 44 | static uint8_t mBehaviorPref[]; |
michael@0 | 45 | }; |
michael@0 | 46 | |
michael@0 | 47 | #define NS_CONTENTBLOCKER_CID \ |
michael@0 | 48 | { 0x4ca6b67b, 0x5cc7, 0x4e71, \ |
michael@0 | 49 | { 0xa9, 0x8a, 0x97, 0xaf, 0x1c, 0x13, 0x48, 0x62 } } |
michael@0 | 50 | |
michael@0 | 51 | #define NS_CONTENTBLOCKER_CONTRACTID "@mozilla.org/permissions/contentblocker;1" |
michael@0 | 52 | |
michael@0 | 53 | #endif /* nsContentBlocker_h__ */ |