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

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

Issue 9317046: Make dart:dom implementation types private so they don't muddle the docs. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 10 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
OLDNEW
1 1
2 class OverflowEventJs extends EventJs implements OverflowEvent native "*Overflow Event" { 2 class _OverflowEventJs extends _EventJs implements OverflowEvent native "*Overfl owEvent" {
3 3
4 static final int BOTH = 2; 4 static final int BOTH = 2;
5 5
6 static final int HORIZONTAL = 0; 6 static final int HORIZONTAL = 0;
7 7
8 static final int VERTICAL = 1; 8 static final int VERTICAL = 1;
9 9
10 bool get horizontalOverflow() native "return this.horizontalOverflow;"; 10 bool get horizontalOverflow() native "return this.horizontalOverflow;";
11 11
12 int get orient() native "return this.orient;"; 12 int get orient() native "return this.orient;";
13 13
14 bool get verticalOverflow() native "return this.verticalOverflow;"; 14 bool get verticalOverflow() native "return this.verticalOverflow;";
15 } 15 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698