- From: David Singer via cvs-syncmail <cvsmail@w3.org>
- Date: Thu, 09 Aug 2012 23:15:39 +0000
- To: public-tracking-commit@w3.org
Update of /w3ccvs/WWW/2011/tracking-protection/drafts In directory hutz:/tmp/cvs-serv23614 Modified Files: tracking-dnt.html Log Message: add the boolean 'some kind of failure' return to the cancel exception calls Index: tracking-dnt.html =================================================================== RCS file: /w3ccvs/WWW/2011/tracking-protection/drafts/tracking-dnt.html,v retrieving revision 1.146 retrieving revision 1.147 diff -u -d -r1.146 -r1.147 --- tracking-dnt.html 9 Aug 2012 22:34:55 -0000 1.146 +++ tracking-dnt.html 9 Aug 2012 23:15:37 -0000 1.147 @@ -1562,7 +1562,7 @@ <h3>API to Cancel a Site-specific Exception</h3> <dl class="idl" title='[NoInterfaceObject] interface NavigatorDoNotTrack'> - <dt>void removeSiteSpecificTrackingException( )</dt> + <dt>boolean removeSiteSpecificTrackingException( )</dt> <dd> Ensures that the database of remembered grants no longer contains any duplets for which the first part is the current @@ -1573,6 +1573,11 @@ top-level-domain. </dd> </dl> + <p>This returns a boolean indicating, when true, that the call has + succeeded, and that the database of grants no longer contains, + or very soon will no longer contain, the indicated grant(s); when false, + some kind of processing error occurred. + </p> </section> </section> @@ -1609,7 +1614,7 @@ <h3>API to cancel a web-wide exception</h3> <dl class="idl" title='[NoInterfaceObject] interface NavigatorDoNotTrack'> - <dt>void removeWebWideTrackingException( )</dt> + <dt>boolean removeWebWideTrackingException( )</dt> <dd> Ensures that the database of remembered grants no longer contains the duplet <code>[ * , document-origin]</code>. @@ -1619,6 +1624,12 @@ to detect which entry (if any) to remove from the database. </dd> </dl> + <p>This returns a boolean indicating, when true, that the call has + succeeded, and that the database of grants no longer contains, + or very soon will no longer contain, the indicated grant; when false, + some kind of processing error occurred. + </p> + </section> </section>
Received on Thursday, 9 August 2012 23:15:40 UTC