gfx/skia/trunk/src/animator/SkExtraPathEffects.xsd

Sat, 03 Jan 2015 20:18:00 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Sat, 03 Jan 2015 20:18:00 +0100
branch
TOR_BUG_3246
changeset 7
129ffea94266
permissions
-rw-r--r--

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.

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

mercurial