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: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*- |
michael@0 | 2 | # vim: set filetype=python: |
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 |
michael@0 | 5 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. |
michael@0 | 6 | |
michael@0 | 7 | XPIDL_SOURCES += [ |
michael@0 | 8 | 'mozIStorageAggregateFunction.idl', |
michael@0 | 9 | 'mozIStorageAsyncConnection.idl', |
michael@0 | 10 | 'mozIStorageAsyncStatement.idl', |
michael@0 | 11 | 'mozIStorageBaseStatement.idl', |
michael@0 | 12 | 'mozIStorageBindingParams.idl', |
michael@0 | 13 | 'mozIStorageBindingParamsArray.idl', |
michael@0 | 14 | 'mozIStorageCompletionCallback.idl', |
michael@0 | 15 | 'mozIStorageConnection.idl', |
michael@0 | 16 | 'mozIStorageError.idl', |
michael@0 | 17 | 'mozIStorageFunction.idl', |
michael@0 | 18 | 'mozIStoragePendingStatement.idl', |
michael@0 | 19 | 'mozIStorageProgressHandler.idl', |
michael@0 | 20 | 'mozIStorageResultSet.idl', |
michael@0 | 21 | 'mozIStorageRow.idl', |
michael@0 | 22 | 'mozIStorageService.idl', |
michael@0 | 23 | 'mozIStorageStatement.idl', |
michael@0 | 24 | 'mozIStorageStatementCallback.idl', |
michael@0 | 25 | 'mozIStorageStatementParams.idl', |
michael@0 | 26 | 'mozIStorageStatementRow.idl', |
michael@0 | 27 | 'mozIStorageVacuumParticipant.idl', |
michael@0 | 28 | 'mozIStorageValueArray.idl', |
michael@0 | 29 | ] |
michael@0 | 30 | |
michael@0 | 31 | XPIDL_MODULE = 'storage' |
michael@0 | 32 | |
michael@0 | 33 | EXPORTS += [ |
michael@0 | 34 | 'mozStorageHelper.h', |
michael@0 | 35 | ] |
michael@0 | 36 | |
michael@0 | 37 | EXPORTS.mozilla += [ |
michael@0 | 38 | 'storage.h', |
michael@0 | 39 | ] |
michael@0 | 40 | |
michael@0 | 41 | # NOTE When adding something to this list, you probably need to add it to the |
michael@0 | 42 | # storage.h file too. |
michael@0 | 43 | EXPORTS.mozilla.storage += [ |
michael@0 | 44 | 'StatementCache.h', |
michael@0 | 45 | ] |
michael@0 | 46 | # SEE ABOVE NOTE! |
michael@0 | 47 |