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

Unified Diff: client/dom/generated/src/frog/XPathResult.dart

Issue 9233028: Frog dart:dom using interfaces and native implementation classes. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge Created 8 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: client/dom/generated/src/frog/XPathResult.dart
diff --git a/client/dom/generated/src/frog/XPathResult.dart b/client/dom/generated/src/frog/XPathResult.dart
index e24e52cc06f4e0ab5501315c57a00a423a828d8f..ea53aa2fba3e0cfa78781954df2872cf150ee8d1 100644
--- a/client/dom/generated/src/frog/XPathResult.dart
+++ b/client/dom/generated/src/frog/XPathResult.dart
@@ -1,5 +1,5 @@
-class XPathResult native "*XPathResult" {
+class XPathResultJS implements XPathResult native "*XPathResult" {
static final int ANY_TYPE = 0;
@@ -29,15 +29,15 @@ class XPathResult native "*XPathResult" {
int get resultType() native "return this.resultType;";
- Node get singleNodeValue() native "return this.singleNodeValue;";
+ NodeJS get singleNodeValue() native "return this.singleNodeValue;";
int get snapshotLength() native "return this.snapshotLength;";
String get stringValue() native "return this.stringValue;";
- Node iterateNext() native;
+ NodeJS iterateNext() native;
- Node snapshotItem(int index) native;
+ NodeJS snapshotItem(int index) native;
var dartObjectLocalStorage;
« no previous file with comments | « client/dom/generated/src/frog/XPathNSResolver.dart ('k') | client/dom/generated/src/frog/XSLTProcessor.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698