Sat, 03 Jan 2015 20:18:00 +0100
Conditionally enable double key logic according to:
private browsing mode or privacy.thirdparty.isolate preference and
implement in GetCookieStringCommon and FindCookie where it counts...
With some reservations of how to convince FindCookie users to test
condition and pass a nullptr when disabling double key logic.
michael@0 | 1 | /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
michael@0 | 2 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 3 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 4 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 5 | |
michael@0 | 6 | #ifndef nsXBLPrototypeResources_h__ |
michael@0 | 7 | #define nsXBLPrototypeResources_h__ |
michael@0 | 8 | |
michael@0 | 9 | #include "nsAutoPtr.h" |
michael@0 | 10 | #include "nsICSSLoaderObserver.h" |
michael@0 | 11 | #include "nsIStyleRuleProcessor.h" |
michael@0 | 12 | |
michael@0 | 13 | class nsIContent; |
michael@0 | 14 | class nsIAtom; |
michael@0 | 15 | class nsXBLResourceLoader; |
michael@0 | 16 | class nsXBLPrototypeBinding; |
michael@0 | 17 | class nsCSSStyleSheet; |
michael@0 | 18 | |
michael@0 | 19 | // *********************************************************************/ |
michael@0 | 20 | // The XBLPrototypeResources class |
michael@0 | 21 | |
michael@0 | 22 | class nsXBLPrototypeResources |
michael@0 | 23 | { |
michael@0 | 24 | public: |
michael@0 | 25 | nsXBLPrototypeResources(nsXBLPrototypeBinding* aBinding); |
michael@0 | 26 | ~nsXBLPrototypeResources(); |
michael@0 | 27 | |
michael@0 | 28 | void LoadResources(bool* aResult); |
michael@0 | 29 | void AddResource(nsIAtom* aResourceType, const nsAString& aSrc); |
michael@0 | 30 | void AddResourceListener(nsIContent* aElement); |
michael@0 | 31 | nsresult FlushSkinSheets(); |
michael@0 | 32 | |
michael@0 | 33 | nsresult Write(nsIObjectOutputStream* aStream); |
michael@0 | 34 | |
michael@0 | 35 | void Traverse(nsCycleCollectionTraversalCallback &cb) const; |
michael@0 | 36 | |
michael@0 | 37 | void ClearLoader(); |
michael@0 | 38 | |
michael@0 | 39 | typedef nsTArray<nsRefPtr<nsCSSStyleSheet> > sheet_array_type; |
michael@0 | 40 | |
michael@0 | 41 | private: |
michael@0 | 42 | // A loader object. Exists only long enough to load resources, and then it dies. |
michael@0 | 43 | nsRefPtr<nsXBLResourceLoader> mLoader; |
michael@0 | 44 | |
michael@0 | 45 | public: |
michael@0 | 46 | // A list of loaded stylesheets for this binding. |
michael@0 | 47 | sheet_array_type mStyleSheetList; |
michael@0 | 48 | |
michael@0 | 49 | // The list of stylesheets converted to a rule processor. |
michael@0 | 50 | nsCOMPtr<nsIStyleRuleProcessor> mRuleProcessor; |
michael@0 | 51 | }; |
michael@0 | 52 | |
michael@0 | 53 | #endif |
michael@0 | 54 |