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

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

Issue 8473008: Generate constants for IDL classes (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add frog dom Created 9 years, 1 month 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
« no previous file with comments | « client/dom/generated/src/frog/Node.dart ('k') | client/dom/generated/src/frog/OESStandardDerivatives.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/dom/generated/src/frog/NodeFilter.dart
diff --git a/client/dom/generated/src/frog/NodeFilter.dart b/client/dom/generated/src/frog/NodeFilter.dart
index 08e3544b5f38f76e2c1dd5ef4b21c53070015a55..ede84b216671bad7b1048afad0bd14b081f6184d 100644
--- a/client/dom/generated/src/frog/NodeFilter.dart
+++ b/client/dom/generated/src/frog/NodeFilter.dart
@@ -1,6 +1,38 @@
class NodeFilter native "*NodeFilter" {
+ static final int FILTER_ACCEPT = 1;
+
+ static final int FILTER_REJECT = 2;
+
+ static final int FILTER_SKIP = 3;
+
+ static final int SHOW_ALL = 0xFFFFFFFF;
+
+ static final int SHOW_ATTRIBUTE = 0x00000002;
+
+ static final int SHOW_CDATA_SECTION = 0x00000008;
+
+ static final int SHOW_COMMENT = 0x00000080;
+
+ static final int SHOW_DOCUMENT = 0x00000100;
+
+ static final int SHOW_DOCUMENT_FRAGMENT = 0x00000400;
+
+ static final int SHOW_DOCUMENT_TYPE = 0x00000200;
+
+ static final int SHOW_ELEMENT = 0x00000001;
+
+ static final int SHOW_ENTITY = 0x00000020;
+
+ static final int SHOW_ENTITY_REFERENCE = 0x00000010;
+
+ static final int SHOW_NOTATION = 0x00000800;
+
+ static final int SHOW_PROCESSING_INSTRUCTION = 0x00000040;
+
+ static final int SHOW_TEXT = 0x00000004;
+
int acceptNode(Node n) native;
var dartObjectLocalStorage;
« no previous file with comments | « client/dom/generated/src/frog/Node.dart ('k') | client/dom/generated/src/frog/OESStandardDerivatives.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698