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

Side by Side Diff: core/xml/XPathResult.idl

Issue 22498002: Roll IDL to multivm@1329 (Closed) Base URL: https://dart.googlecode.com/svn/third_party/WebCore
Patch Set: Created 7 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « core/xml/XPathExpression.idl ('k') | modules/README » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
(...skipping 14 matching lines...) Expand all
25 const unsigned short BOOLEAN_TYPE = 3; 25 const unsigned short BOOLEAN_TYPE = 3;
26 const unsigned short UNORDERED_NODE_ITERATOR_TYPE = 4; 26 const unsigned short UNORDERED_NODE_ITERATOR_TYPE = 4;
27 const unsigned short ORDERED_NODE_ITERATOR_TYPE = 5; 27 const unsigned short ORDERED_NODE_ITERATOR_TYPE = 5;
28 const unsigned short UNORDERED_NODE_SNAPSHOT_TYPE = 6; 28 const unsigned short UNORDERED_NODE_SNAPSHOT_TYPE = 6;
29 const unsigned short ORDERED_NODE_SNAPSHOT_TYPE = 7; 29 const unsigned short ORDERED_NODE_SNAPSHOT_TYPE = 7;
30 const unsigned short ANY_UNORDERED_NODE_TYPE = 8; 30 const unsigned short ANY_UNORDERED_NODE_TYPE = 8;
31 const unsigned short FIRST_ORDERED_NODE_TYPE = 9; 31 const unsigned short FIRST_ORDERED_NODE_TYPE = 9;
32 32
33 readonly attribute unsigned short resultType; 33 readonly attribute unsigned short resultType;
34 [GetterRaisesException] readonly attribute double numberValue; 34 [GetterRaisesException] readonly attribute double numberValue;
35 35
36 [GetterRaisesException] readonly attribute DOMString stringValue; 36 [GetterRaisesException] readonly attribute DOMString stringValue;
37 37
38 [GetterRaisesException] readonly attribute boolean booleanValue; 38 [GetterRaisesException] readonly attribute boolean booleanValue;
39 39
40 [GetterRaisesException] readonly attribute Node singleNodeValue; 40 [GetterRaisesException] readonly attribute Node singleNodeValue;
41 41
42 readonly attribute boolean invalidIteratorState; 42 readonly attribute boolean invalidIteratorState;
43 [GetterRaisesException] readonly attribute unsigned long snapshotLength; 43 [GetterRaisesException] readonly attribute unsigned long snapshotLength;
44 44
45 [RaisesException] Node iterateNext(); 45 [RaisesException] Node iterateNext();
46 [RaisesException] Node snapshotItem([Default=Undefined] optional unsigned lo ng index); 46 [RaisesException] Node snapshotItem([Default=Undefined] optional unsigned lo ng index);
47 }; 47 };
48 48
OLDNEW
« no previous file with comments | « core/xml/XPathExpression.idl ('k') | modules/README » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698