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 | /* 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 file, |
michael@0 | 4 | * You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 5 | |
michael@0 | 6 | include protocol PBlob; |
michael@0 | 7 | include protocol PContent; |
michael@0 | 8 | |
michael@0 | 9 | namespace mozilla { |
michael@0 | 10 | namespace dom { |
michael@0 | 11 | namespace devicestorage { |
michael@0 | 12 | |
michael@0 | 13 | |
michael@0 | 14 | struct ErrorResponse |
michael@0 | 15 | { |
michael@0 | 16 | nsString error; |
michael@0 | 17 | }; |
michael@0 | 18 | |
michael@0 | 19 | struct SuccessResponse |
michael@0 | 20 | { |
michael@0 | 21 | }; |
michael@0 | 22 | |
michael@0 | 23 | struct FileDescriptorResponse |
michael@0 | 24 | { |
michael@0 | 25 | FileDescriptor fileDescriptor; |
michael@0 | 26 | }; |
michael@0 | 27 | |
michael@0 | 28 | struct BlobResponse |
michael@0 | 29 | { |
michael@0 | 30 | PBlob blob; |
michael@0 | 31 | }; |
michael@0 | 32 | |
michael@0 | 33 | struct DeviceStorageFileValue |
michael@0 | 34 | { |
michael@0 | 35 | nsString storageName; |
michael@0 | 36 | nsString name; |
michael@0 | 37 | }; |
michael@0 | 38 | |
michael@0 | 39 | struct EnumerationResponse |
michael@0 | 40 | { |
michael@0 | 41 | nsString type; |
michael@0 | 42 | nsString rootdir; |
michael@0 | 43 | DeviceStorageFileValue[] paths; |
michael@0 | 44 | }; |
michael@0 | 45 | |
michael@0 | 46 | struct FreeSpaceStorageResponse |
michael@0 | 47 | { |
michael@0 | 48 | uint64_t freeBytes; |
michael@0 | 49 | }; |
michael@0 | 50 | |
michael@0 | 51 | struct UsedSpaceStorageResponse |
michael@0 | 52 | { |
michael@0 | 53 | uint64_t usedBytes; |
michael@0 | 54 | }; |
michael@0 | 55 | |
michael@0 | 56 | struct AvailableStorageResponse |
michael@0 | 57 | { |
michael@0 | 58 | nsString mountState; |
michael@0 | 59 | }; |
michael@0 | 60 | |
michael@0 | 61 | struct StorageStatusResponse |
michael@0 | 62 | { |
michael@0 | 63 | nsString storageStatus; |
michael@0 | 64 | }; |
michael@0 | 65 | |
michael@0 | 66 | struct FormatStorageResponse |
michael@0 | 67 | { |
michael@0 | 68 | nsString mountState; |
michael@0 | 69 | }; |
michael@0 | 70 | |
michael@0 | 71 | struct MountStorageResponse |
michael@0 | 72 | { |
michael@0 | 73 | nsString storageStatus; |
michael@0 | 74 | }; |
michael@0 | 75 | |
michael@0 | 76 | struct UnmountStorageResponse |
michael@0 | 77 | { |
michael@0 | 78 | nsString storageStatus; |
michael@0 | 79 | }; |
michael@0 | 80 | |
michael@0 | 81 | union DeviceStorageResponseValue |
michael@0 | 82 | { |
michael@0 | 83 | ErrorResponse; |
michael@0 | 84 | SuccessResponse; |
michael@0 | 85 | FileDescriptorResponse; |
michael@0 | 86 | BlobResponse; |
michael@0 | 87 | EnumerationResponse; |
michael@0 | 88 | FreeSpaceStorageResponse; |
michael@0 | 89 | UsedSpaceStorageResponse; |
michael@0 | 90 | AvailableStorageResponse; |
michael@0 | 91 | StorageStatusResponse; |
michael@0 | 92 | FormatStorageResponse; |
michael@0 | 93 | MountStorageResponse; |
michael@0 | 94 | UnmountStorageResponse; |
michael@0 | 95 | }; |
michael@0 | 96 | |
michael@0 | 97 | sync protocol PDeviceStorageRequest { |
michael@0 | 98 | manager PContent; |
michael@0 | 99 | child: |
michael@0 | 100 | __delete__(DeviceStorageResponseValue response); |
michael@0 | 101 | }; |
michael@0 | 102 | |
michael@0 | 103 | } // namespace devicestorage |
michael@0 | 104 | } // namespace dom |
michael@0 | 105 | } // namespace mozilla |