Chromium Code Reviews

Side by Side Diff: Source/core/xml/DocumentXPathEvaluator.idl

Issue 983123003: Add [TypeChecking=Interface] to XPath interfaces (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: fix CG for any/object argument with default value Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * This library is free software; you can redistribute it and/or 4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public 5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either 6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version. 7 * version 2 of the License, or (at your option) any later version.
8 * 8 *
9 * This library is distributed in the hope that it will be useful, 9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Library General Public License for more details. 12 * Library General Public License for more details.
13 * 13 *
14 * You should have received a copy of the GNU Library General Public License 14 * You should have received a copy of the GNU Library General Public License
15 * along with this library; see the file COPYING.LIB. If not, write to 15 * along with this library; see the file COPYING.LIB. If not, write to
16 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 16 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 * Boston, MA 02110-1301, USA. 17 * Boston, MA 02110-1301, USA.
18 */ 18 */
19 19
20 partial interface Document { 20 [
21 TypeChecking=Interface,
22 ] partial interface Document {
21 // DOM Level 3 XPath (XPathEvaluator interface) 23 // DOM Level 3 XPath (XPathEvaluator interface)
22 [MeasureAs=DocumentXPathCreateExpression, RaisesException] XPathExpression c reateExpression([Default=Undefined] optional DOMString expression, 24 [MeasureAs=DocumentXPathCreateExpression, RaisesException] XPathExpression c reateExpression(DOMString expression, optional XPathNSResolver? resolver = null) ;
23 [Default=Undefined] optio nal XPathNSResolver resolver); 25
24 [MeasureAs=DocumentXPathCreateNSResolver] XPathNSResolver createNSResolve r(Node nodeResolver); 26 [MeasureAs=DocumentXPathCreateNSResolver] XPathNSResolver createNSResolver(N ode nodeResolver);
25 [Custom, MeasureAs=DocumentXPathEvaluate, RaisesException] XPathResult evalu ate([Default=Undefined] optional DOMString expression, 27
26 [Default=Undefined] optional Node contextNode, 28 [MeasureAs=DocumentXPathEvaluate, RaisesException] XPathResult evaluate(DOMS tring expression, Node contextNode, optional XPathNSResolver? resolver = null, o ptional unsigned short type = 0, optional object? inResult = null);
27 [Default=Undefined] optional XPathNSResolver resolver,
28 [Default=Undefined] optional unsigned short type,
29 [Default=Undefined] optional XPathResult inResult);
30 }; 29 };
OLDNEW

Powered by Google App Engine