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 | <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" |
michael@0 | 2 | xmlns:Sk="urn:screenplay" |
michael@0 | 3 | xmlns:extra="urn:extraPathEffects" targetNamespace="urn:extraPathEffects" > |
michael@0 | 4 | <xs:import namespace="urn:screenplay" |
michael@0 | 5 | schemaLocation="SkAnimateSchema.xsd" /> |
michael@0 | 6 | |
michael@0 | 7 | <xs:element name="composePathEffect" > |
michael@0 | 8 | <xs:complexType> |
michael@0 | 9 | <xs:choice maxOccurs="1"> |
michael@0 | 10 | <xs:element ref="Sk:dash"/> |
michael@0 | 11 | <xs:element ref="extra:shape1DPathEffect"/> |
michael@0 | 12 | </xs:choice> |
michael@0 | 13 | <xs:attribute name="id" type="xs:ID"/> |
michael@0 | 14 | </xs:complexType> |
michael@0 | 15 | </xs:element> |
michael@0 | 16 | |
michael@0 | 17 | <xs:element name="shape1DPathEffect" > |
michael@0 | 18 | <xs:complexType> |
michael@0 | 19 | <xs:choice maxOccurs="1"> |
michael@0 | 20 | <xs:element ref="Sk:matrix"/> |
michael@0 | 21 | <xs:element ref="Sk:path"/> |
michael@0 | 22 | </xs:choice> |
michael@0 | 23 | <xs:attribute name="addPath" type="Sk:DynamicString" /> |
michael@0 | 24 | <xs:attribute name="matrix" type="Sk:DynamicString" /> |
michael@0 | 25 | <xs:attribute name="path" type="Sk:Path" /> |
michael@0 | 26 | <xs:attribute name="phase" type="Sk:DynamicString"/> |
michael@0 | 27 | <xs:attribute name="spacing" type="Sk:DynamicString"/> |
michael@0 | 28 | <xs:attribute name="id" type="xs:ID"/> |
michael@0 | 29 | </xs:complexType> |
michael@0 | 30 | </xs:element> |
michael@0 | 31 | |
michael@0 | 32 | </xs:schema> |
michael@0 | 33 |