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 | /* |
michael@0 | 7 | * The sole purpose of the Find service is to store globally the |
michael@0 | 8 | * last used Find settings |
michael@0 | 9 | * |
michael@0 | 10 | */ |
michael@0 | 11 | |
michael@0 | 12 | |
michael@0 | 13 | #include "nsFindService.h" |
michael@0 | 14 | |
michael@0 | 15 | |
michael@0 | 16 | nsFindService::nsFindService() |
michael@0 | 17 | : mFindBackwards(false) |
michael@0 | 18 | , mWrapFind(true) |
michael@0 | 19 | , mEntireWord(false) |
michael@0 | 20 | , mMatchCase(false) |
michael@0 | 21 | { |
michael@0 | 22 | } |
michael@0 | 23 | |
michael@0 | 24 | |
michael@0 | 25 | nsFindService::~nsFindService() |
michael@0 | 26 | { |
michael@0 | 27 | } |
michael@0 | 28 | |
michael@0 | 29 | NS_IMPL_ISUPPORTS(nsFindService, nsIFindService) |
michael@0 | 30 | |
michael@0 | 31 | /* attribute AString searchString; */ |
michael@0 | 32 | NS_IMETHODIMP nsFindService::GetSearchString(nsAString & aSearchString) |
michael@0 | 33 | { |
michael@0 | 34 | aSearchString = mSearchString; |
michael@0 | 35 | return NS_OK; |
michael@0 | 36 | } |
michael@0 | 37 | |
michael@0 | 38 | NS_IMETHODIMP nsFindService::SetSearchString(const nsAString & aSearchString) |
michael@0 | 39 | { |
michael@0 | 40 | mSearchString = aSearchString; |
michael@0 | 41 | return NS_OK; |
michael@0 | 42 | } |
michael@0 | 43 | |
michael@0 | 44 | /* attribute AString replaceString; */ |
michael@0 | 45 | NS_IMETHODIMP nsFindService::GetReplaceString(nsAString & aReplaceString) |
michael@0 | 46 | { |
michael@0 | 47 | aReplaceString = mReplaceString; |
michael@0 | 48 | return NS_OK; |
michael@0 | 49 | } |
michael@0 | 50 | NS_IMETHODIMP nsFindService::SetReplaceString(const nsAString & aReplaceString) |
michael@0 | 51 | { |
michael@0 | 52 | mReplaceString = aReplaceString; |
michael@0 | 53 | return NS_OK; |
michael@0 | 54 | } |
michael@0 | 55 | |
michael@0 | 56 | /* attribute boolean findBackwards; */ |
michael@0 | 57 | NS_IMETHODIMP nsFindService::GetFindBackwards(bool *aFindBackwards) |
michael@0 | 58 | { |
michael@0 | 59 | NS_ENSURE_ARG_POINTER(aFindBackwards); |
michael@0 | 60 | *aFindBackwards = mFindBackwards; |
michael@0 | 61 | return NS_OK; |
michael@0 | 62 | } |
michael@0 | 63 | NS_IMETHODIMP nsFindService::SetFindBackwards(bool aFindBackwards) |
michael@0 | 64 | { |
michael@0 | 65 | mFindBackwards = aFindBackwards; |
michael@0 | 66 | return NS_OK; |
michael@0 | 67 | } |
michael@0 | 68 | |
michael@0 | 69 | /* attribute boolean wrapFind; */ |
michael@0 | 70 | NS_IMETHODIMP nsFindService::GetWrapFind(bool *aWrapFind) |
michael@0 | 71 | { |
michael@0 | 72 | NS_ENSURE_ARG_POINTER(aWrapFind); |
michael@0 | 73 | *aWrapFind = mWrapFind; |
michael@0 | 74 | return NS_OK; |
michael@0 | 75 | } |
michael@0 | 76 | NS_IMETHODIMP nsFindService::SetWrapFind(bool aWrapFind) |
michael@0 | 77 | { |
michael@0 | 78 | mWrapFind = aWrapFind; |
michael@0 | 79 | return NS_OK; |
michael@0 | 80 | } |
michael@0 | 81 | |
michael@0 | 82 | /* attribute boolean entireWord; */ |
michael@0 | 83 | NS_IMETHODIMP nsFindService::GetEntireWord(bool *aEntireWord) |
michael@0 | 84 | { |
michael@0 | 85 | NS_ENSURE_ARG_POINTER(aEntireWord); |
michael@0 | 86 | *aEntireWord = mEntireWord; |
michael@0 | 87 | return NS_OK; |
michael@0 | 88 | } |
michael@0 | 89 | NS_IMETHODIMP nsFindService::SetEntireWord(bool aEntireWord) |
michael@0 | 90 | { |
michael@0 | 91 | mEntireWord = aEntireWord; |
michael@0 | 92 | return NS_OK; |
michael@0 | 93 | } |
michael@0 | 94 | |
michael@0 | 95 | /* attribute boolean matchCase; */ |
michael@0 | 96 | NS_IMETHODIMP nsFindService::GetMatchCase(bool *aMatchCase) |
michael@0 | 97 | { |
michael@0 | 98 | NS_ENSURE_ARG_POINTER(aMatchCase); |
michael@0 | 99 | *aMatchCase = mMatchCase; |
michael@0 | 100 | return NS_OK; |
michael@0 | 101 | } |
michael@0 | 102 | NS_IMETHODIMP nsFindService::SetMatchCase(bool aMatchCase) |
michael@0 | 103 | { |
michael@0 | 104 | mMatchCase = aMatchCase; |
michael@0 | 105 | return NS_OK; |
michael@0 | 106 | } |
michael@0 | 107 |