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 | #include <string.h> |
michael@0 | 2 | |
michael@0 | 3 | int main(int argc, char* argv[]) { |
michael@0 | 4 | if (argc != 9) |
michael@0 | 5 | return -1; |
michael@0 | 6 | |
michael@0 | 7 | if (strcmp("mozilla", argv[1]) != 0) |
michael@0 | 8 | return 1; |
michael@0 | 9 | if (strcmp("firefox", argv[2]) != 0) |
michael@0 | 10 | return 2; |
michael@0 | 11 | if (strcmp("thunderbird", argv[3]) != 0) |
michael@0 | 12 | return 3; |
michael@0 | 13 | if (strcmp("seamonkey", argv[4]) != 0) |
michael@0 | 14 | return 4; |
michael@0 | 15 | if (strcmp("foo", argv[5]) != 0) |
michael@0 | 16 | return 5; |
michael@0 | 17 | if (strcmp("bar", argv[6]) != 0) |
michael@0 | 18 | return 6; |
michael@0 | 19 | if (strcmp("argument with spaces", argv[7]) != 0) |
michael@0 | 20 | return 7; |
michael@0 | 21 | if (strcmp("\"argument with quotes\"", argv[8]) != 0) |
michael@0 | 22 | return 8; |
michael@0 | 23 | |
michael@0 | 24 | return 0; |
michael@0 | 25 | } |