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

Side by Side Diff: client/dom/generated/src/frog/Element.dart

Issue 9109032: Make most native types hidden. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « client/dom/generated/src/frog/Document.dart ('k') | client/dom/generated/src/frog/Event.dart » ('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 class Element extends Node native "Element" { 2 class Element extends Node native "*Element" {
3 3
4 static final int ALLOW_KEYBOARD_INPUT = 1; 4 static final int ALLOW_KEYBOARD_INPUT = 1;
5 5
6 int childElementCount; 6 int childElementCount;
7 7
8 int clientHeight; 8 int clientHeight;
9 9
10 int clientLeft; 10 int clientLeft;
11 11
12 int clientTop; 12 int clientTop;
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 void setAttributeNS(String namespaceURI, String qualifiedName, String value) n ative; 92 void setAttributeNS(String namespaceURI, String qualifiedName, String value) n ative;
93 93
94 Attr setAttributeNode(Attr newAttr) native; 94 Attr setAttributeNode(Attr newAttr) native;
95 95
96 Attr setAttributeNodeNS(Attr newAttr) native; 96 Attr setAttributeNodeNS(Attr newAttr) native;
97 97
98 bool webkitMatchesSelector(String selectors) native; 98 bool webkitMatchesSelector(String selectors) native;
99 99
100 void webkitRequestFullScreen(int flags) native; 100 void webkitRequestFullScreen(int flags) native;
101 } 101 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/Document.dart ('k') | client/dom/generated/src/frog/Event.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698