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

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

Issue 9271031: Make DOMType the root of DOM implementation types. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: x 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/Document.dart
diff --git a/client/dom/generated/src/frog/Document.dart b/client/dom/generated/src/frog/Document.dart
index e480111ae771da18dce987d7a1a9e48ccff7837e..09fe8c0b593063586b782dd887b34e7b4f63ed5f 100644
--- a/client/dom/generated/src/frog/Document.dart
+++ b/client/dom/generated/src/frog/Document.dart
@@ -1,15 +1,15 @@
-class DocumentJS extends NodeJS implements Document native "*Document" {
+class DocumentJs extends NodeJs implements Document native "*Document" {
String get URL() native "return this.URL;";
- HTMLCollectionJS get anchors() native "return this.anchors;";
+ HTMLCollectionJs get anchors() native "return this.anchors;";
- HTMLCollectionJS get applets() native "return this.applets;";
+ HTMLCollectionJs get applets() native "return this.applets;";
- HTMLElementJS get body() native "return this.body;";
+ HTMLElementJs get body() native "return this.body;";
- void set body(HTMLElementJS value) native "this.body = value;";
+ void set body(HTMLElementJs value) native "this.body = value;";
String get characterSet() native "return this.characterSet;";
@@ -25,11 +25,11 @@ class DocumentJS extends NodeJS implements Document native "*Document" {
String get defaultCharset() native "return this.defaultCharset;";
- DOMWindowJS get defaultView() native "return this.defaultView;";
+ DOMWindowJs get defaultView() native "return this.defaultView;";
- DocumentTypeJS get doctype() native "return this.doctype;";
+ DocumentTypeJs get doctype() native "return this.doctype;";
- ElementJS get documentElement() native "return this.documentElement;";
+ ElementJs get documentElement() native "return this.documentElement;";
String get documentURI() native "return this.documentURI;";
@@ -39,23 +39,23 @@ class DocumentJS extends NodeJS implements Document native "*Document" {
void set domain(String value) native "this.domain = value;";
- HTMLCollectionJS get forms() native "return this.forms;";
+ HTMLCollectionJs get forms() native "return this.forms;";
- HTMLHeadElementJS get head() native "return this.head;";
+ HTMLHeadElementJs get head() native "return this.head;";
- HTMLCollectionJS get images() native "return this.images;";
+ HTMLCollectionJs get images() native "return this.images;";
- DOMImplementationJS get implementation() native "return this.implementation;";
+ DOMImplementationJs get implementation() native "return this.implementation;";
String get inputEncoding() native "return this.inputEncoding;";
String get lastModified() native "return this.lastModified;";
- HTMLCollectionJS get links() native "return this.links;";
+ HTMLCollectionJs get links() native "return this.links;";
- LocationJS get location() native "return this.location;";
+ LocationJs get location() native "return this.location;";
- void set location(LocationJS value) native "this.location = value;";
+ void set location(LocationJs value) native "this.location = value;";
String get preferredStylesheetSet() native "return this.preferredStylesheetSet;";
@@ -67,13 +67,13 @@ class DocumentJS extends NodeJS implements Document native "*Document" {
void set selectedStylesheetSet(String value) native "this.selectedStylesheetSet = value;";
- StyleSheetListJS get styleSheets() native "return this.styleSheets;";
+ StyleSheetListJs get styleSheets() native "return this.styleSheets;";
String get title() native "return this.title;";
void set title(String value) native "this.title = value;";
- ElementJS get webkitCurrentFullScreenElement() native "return this.webkitCurrentFullScreenElement;";
+ ElementJs get webkitCurrentFullScreenElement() native "return this.webkitCurrentFullScreenElement;";
bool get webkitFullScreenKeyboardInputAllowed() native "return this.webkitFullScreenKeyboardInputAllowed;";
@@ -93,69 +93,69 @@ class DocumentJS extends NodeJS implements Document native "*Document" {
void set xmlVersion(String value) native "this.xmlVersion = value;";
- NodeJS adoptNode(NodeJS source) native;
+ NodeJs adoptNode(NodeJs source) native;
- RangeJS caretRangeFromPoint(int x, int y) native;
+ RangeJs caretRangeFromPoint(int x, int y) native;
- AttrJS createAttribute(String name) native;
+ AttrJs createAttribute(String name) native;
- AttrJS createAttributeNS(String namespaceURI, String qualifiedName) native;
+ AttrJs createAttributeNS(String namespaceURI, String qualifiedName) native;
- CDATASectionJS createCDATASection(String data) native;
+ CDATASectionJs createCDATASection(String data) native;
- CommentJS createComment(String data) native;
+ CommentJs createComment(String data) native;
- DocumentFragmentJS createDocumentFragment() native;
+ DocumentFragmentJs createDocumentFragment() native;
- ElementJS createElement(String tagName) native;
+ ElementJs createElement(String tagName) native;
- ElementJS createElementNS(String namespaceURI, String qualifiedName) native;
+ ElementJs createElementNS(String namespaceURI, String qualifiedName) native;
- EntityReferenceJS createEntityReference(String name) native;
+ EntityReferenceJs createEntityReference(String name) native;
- EventJS createEvent(String eventType) native;
+ EventJs createEvent(String eventType) native;
- XPathExpressionJS createExpression(String expression, XPathNSResolverJS resolver) native;
+ XPathExpressionJs createExpression(String expression, XPathNSResolverJs resolver) native;
- XPathNSResolverJS createNSResolver(NodeJS nodeResolver) native;
+ XPathNSResolverJs createNSResolver(NodeJs nodeResolver) native;
- NodeIteratorJS createNodeIterator(NodeJS root, int whatToShow, NodeFilterJS filter, bool expandEntityReferences) native;
+ NodeIteratorJs createNodeIterator(NodeJs root, int whatToShow, NodeFilterJs filter, bool expandEntityReferences) native;
- ProcessingInstructionJS createProcessingInstruction(String target, String data) native;
+ ProcessingInstructionJs createProcessingInstruction(String target, String data) native;
- RangeJS createRange() native;
+ RangeJs createRange() native;
- TextJS createTextNode(String data) native;
+ TextJs createTextNode(String data) native;
- TouchJS createTouch(DOMWindowJS window, EventTargetJS target, int identifier, int pageX, int pageY, int screenX, int screenY, int webkitRadiusX, int webkitRadiusY, num webkitRotationAngle, num webkitForce) native;
+ TouchJs createTouch(DOMWindowJs window, EventTargetJs target, int identifier, int pageX, int pageY, int screenX, int screenY, int webkitRadiusX, int webkitRadiusY, num webkitRotationAngle, num webkitForce) native;
- TouchListJS createTouchList() native;
+ TouchListJs createTouchList() native;
- TreeWalkerJS createTreeWalker(NodeJS root, int whatToShow, NodeFilterJS filter, bool expandEntityReferences) native;
+ TreeWalkerJs createTreeWalker(NodeJs root, int whatToShow, NodeFilterJs filter, bool expandEntityReferences) native;
- ElementJS elementFromPoint(int x, int y) native;
+ ElementJs elementFromPoint(int x, int y) native;
- XPathResultJS evaluate(String expression, NodeJS contextNode, XPathNSResolverJS resolver, int type, XPathResultJS inResult) native;
+ XPathResultJs evaluate(String expression, NodeJs contextNode, XPathNSResolverJs resolver, int type, XPathResultJs inResult) native;
bool execCommand(String command, bool userInterface, String value) native;
Object getCSSCanvasContext(String contextId, String name, int width, int height) native;
- ElementJS getElementById(String elementId) native;
+ ElementJs getElementById(String elementId) native;
- NodeListJS getElementsByClassName(String tagname) native;
+ NodeListJs getElementsByClassName(String tagname) native;
- NodeListJS getElementsByName(String elementName) native;
+ NodeListJs getElementsByName(String elementName) native;
- NodeListJS getElementsByTagName(String tagname) native;
+ NodeListJs getElementsByTagName(String tagname) native;
- NodeListJS getElementsByTagNameNS(String namespaceURI, String localName) native;
+ NodeListJs getElementsByTagNameNS(String namespaceURI, String localName) native;
- CSSStyleDeclarationJS getOverrideStyle(ElementJS element, String pseudoElement) native;
+ CSSStyleDeclarationJs getOverrideStyle(ElementJs element, String pseudoElement) native;
- DOMSelectionJS getSelection() native;
+ DOMSelectionJs getSelection() native;
- NodeJS importNode(NodeJS importedNode, [bool deep = null]) native;
+ NodeJs importNode(NodeJs importedNode, [bool deep = null]) native;
bool queryCommandEnabled(String command) native;
@@ -167,11 +167,11 @@ class DocumentJS extends NodeJS implements Document native "*Document" {
String queryCommandValue(String command) native;
- ElementJS querySelector(String selectors) native;
+ ElementJs querySelector(String selectors) native;
- NodeListJS querySelectorAll(String selectors) native;
+ NodeListJs querySelectorAll(String selectors) native;
void webkitCancelFullScreen() native;
- WebKitNamedFlowJS webkitGetFlowByName(String name) native;
+ WebKitNamedFlowJs webkitGetFlowByName(String name) native;
}
« no previous file with comments | « client/dom/generated/src/frog/DirectoryReaderSync.dart ('k') | client/dom/generated/src/frog/DocumentFragment.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698