Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(188)

Side by Side Diff: third_party/WebKit/Source/core/xml/XPathResult.idl

Issue 1873323002: Have bindings layer assume and insist that all interface types are GCed. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006 Apple Computer, Inc. 2 * Copyright (C) 2006 Apple Computer, Inc.
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 // http://www.w3.org/TR/DOM-Level-3-XPath/xpath.html#XPathResult 20 // http://www.w3.org/TR/DOM-Level-3-XPath/xpath.html#XPathResult
21 21
22 [ 22 [
23 GarbageCollected
24 ] interface XPathResult { 23 ] interface XPathResult {
25 // XPathResultType 24 // XPathResultType
26 const unsigned short ANY_TYPE = 0; 25 const unsigned short ANY_TYPE = 0;
27 const unsigned short NUMBER_TYPE = 1; 26 const unsigned short NUMBER_TYPE = 1;
28 const unsigned short STRING_TYPE = 2; 27 const unsigned short STRING_TYPE = 2;
29 const unsigned short BOOLEAN_TYPE = 3; 28 const unsigned short BOOLEAN_TYPE = 3;
30 const unsigned short UNORDERED_NODE_ITERATOR_TYPE = 4; 29 const unsigned short UNORDERED_NODE_ITERATOR_TYPE = 4;
31 const unsigned short ORDERED_NODE_ITERATOR_TYPE = 5; 30 const unsigned short ORDERED_NODE_ITERATOR_TYPE = 5;
32 const unsigned short UNORDERED_NODE_SNAPSHOT_TYPE = 6; 31 const unsigned short UNORDERED_NODE_SNAPSHOT_TYPE = 6;
33 const unsigned short ORDERED_NODE_SNAPSHOT_TYPE = 7; 32 const unsigned short ORDERED_NODE_SNAPSHOT_TYPE = 7;
34 const unsigned short ANY_UNORDERED_NODE_TYPE = 8; 33 const unsigned short ANY_UNORDERED_NODE_TYPE = 8;
35 const unsigned short FIRST_ORDERED_NODE_TYPE = 9; 34 const unsigned short FIRST_ORDERED_NODE_TYPE = 9;
36 35
37 readonly attribute unsigned short resultType; 36 readonly attribute unsigned short resultType;
38 [RaisesException=Getter] readonly attribute double numberValue; 37 [RaisesException=Getter] readonly attribute double numberValue;
39 38
40 [RaisesException=Getter] readonly attribute DOMString stringValue; 39 [RaisesException=Getter] readonly attribute DOMString stringValue;
41 40
42 [RaisesException=Getter] readonly attribute boolean booleanValue; 41 [RaisesException=Getter] readonly attribute boolean booleanValue;
43 42
44 [RaisesException=Getter] readonly attribute Node singleNodeValue; 43 [RaisesException=Getter] readonly attribute Node singleNodeValue;
45 44
46 readonly attribute boolean invalidIteratorState; 45 readonly attribute boolean invalidIteratorState;
47 [RaisesException=Getter] readonly attribute unsigned long snapshotLength; 46 [RaisesException=Getter] readonly attribute unsigned long snapshotLength;
48 47
49 [RaisesException] Node? iterateNext(); 48 [RaisesException] Node? iterateNext();
50 [RaisesException] Node? snapshotItem(unsigned long index); 49 [RaisesException] Node? snapshotItem(unsigned long index);
51 }; 50 };
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/xml/XPathNSResolver.idl ('k') | third_party/WebKit/Source/core/xml/XSLTProcessor.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698