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: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
michael@0 | 2 | /* vim: set ts=2 et sw=2 tw=80: */ |
michael@0 | 3 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 4 | * License, v. 2.0. If a copy of the MPL was not distributed with this file, |
michael@0 | 5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 6 | |
michael@0 | 7 | #ifndef mozilla_dom_domerror_h__ |
michael@0 | 8 | #define mozilla_dom_domerror_h__ |
michael@0 | 9 | |
michael@0 | 10 | #include "mozilla/Attributes.h" |
michael@0 | 11 | #include "nsWrapperCache.h" |
michael@0 | 12 | #include "nsCOMPtr.h" |
michael@0 | 13 | #include "nsString.h" |
michael@0 | 14 | #include "nsPIDOMWindow.h" |
michael@0 | 15 | |
michael@0 | 16 | namespace mozilla { |
michael@0 | 17 | |
michael@0 | 18 | class ErrorResult; |
michael@0 | 19 | |
michael@0 | 20 | namespace dom { |
michael@0 | 21 | |
michael@0 | 22 | class GlobalObject; |
michael@0 | 23 | |
michael@0 | 24 | class DOMError : public nsISupports, |
michael@0 | 25 | public nsWrapperCache |
michael@0 | 26 | { |
michael@0 | 27 | nsCOMPtr<nsPIDOMWindow> mWindow; |
michael@0 | 28 | nsString mName; |
michael@0 | 29 | nsString mMessage; |
michael@0 | 30 | |
michael@0 | 31 | public: |
michael@0 | 32 | NS_DECL_CYCLE_COLLECTING_ISUPPORTS |
michael@0 | 33 | NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS(DOMError) |
michael@0 | 34 | |
michael@0 | 35 | // aWindow can be null if this DOMError is not associated with a particular |
michael@0 | 36 | // window. |
michael@0 | 37 | |
michael@0 | 38 | DOMError(nsPIDOMWindow* aWindow); |
michael@0 | 39 | |
michael@0 | 40 | DOMError(nsPIDOMWindow* aWindow, nsresult aValue); |
michael@0 | 41 | |
michael@0 | 42 | DOMError(nsPIDOMWindow* aWindow, const nsAString& aName); |
michael@0 | 43 | |
michael@0 | 44 | DOMError(nsPIDOMWindow* aWindow, const nsAString& aName, |
michael@0 | 45 | const nsAString& aMessage); |
michael@0 | 46 | |
michael@0 | 47 | virtual ~DOMError(); |
michael@0 | 48 | |
michael@0 | 49 | nsPIDOMWindow* GetParentObject() const |
michael@0 | 50 | { |
michael@0 | 51 | return mWindow; |
michael@0 | 52 | } |
michael@0 | 53 | |
michael@0 | 54 | virtual JSObject* |
michael@0 | 55 | WrapObject(JSContext* aCx) MOZ_OVERRIDE; |
michael@0 | 56 | |
michael@0 | 57 | static already_AddRefed<DOMError> |
michael@0 | 58 | Constructor(const GlobalObject& global, const nsAString& name, |
michael@0 | 59 | const nsAString& message, ErrorResult& aRv); |
michael@0 | 60 | |
michael@0 | 61 | void GetName(nsString& aRetval) const |
michael@0 | 62 | { |
michael@0 | 63 | aRetval = mName; |
michael@0 | 64 | } |
michael@0 | 65 | |
michael@0 | 66 | void GetMessage(nsString& aRetval) const |
michael@0 | 67 | { |
michael@0 | 68 | aRetval = mMessage; |
michael@0 | 69 | } |
michael@0 | 70 | |
michael@0 | 71 | void Init(const nsAString& aName, const nsAString& aMessage) |
michael@0 | 72 | { |
michael@0 | 73 | mName = aName; |
michael@0 | 74 | mMessage = aMessage; |
michael@0 | 75 | } |
michael@0 | 76 | }; |
michael@0 | 77 | |
michael@0 | 78 | } // namespace dom |
michael@0 | 79 | } // namespace mozilla |
michael@0 | 80 | |
michael@0 | 81 | #endif // mozilla_dom_domerror_h__ |