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

Unified Diff: client/dom/generated/src/frog/MouseEvent.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, 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
« no previous file with comments | « client/dom/generated/src/frog/Metadata.dart ('k') | client/dom/generated/src/frog/MutationCallback.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/dom/generated/src/frog/MouseEvent.dart
diff --git a/client/dom/generated/src/frog/MouseEvent.dart b/client/dom/generated/src/frog/MouseEvent.dart
index ec691089c36e242739a4827f86e076af22d63a51..158c9e6ee8c6442a0c84fbcff03fdb4b9ef7b80b 100644
--- a/client/dom/generated/src/frog/MouseEvent.dart
+++ b/client/dom/generated/src/frog/MouseEvent.dart
@@ -1,5 +1,5 @@
-class MouseEventJs extends UIEventJs implements MouseEvent native "*MouseEvent" {
+class _MouseEventJs extends _UIEventJs implements MouseEvent native "*MouseEvent" {
bool get altKey() native "return this.altKey;";
@@ -11,9 +11,9 @@ class MouseEventJs extends UIEventJs implements MouseEvent native "*MouseEvent"
bool get ctrlKey() native "return this.ctrlKey;";
- ClipboardJs get dataTransfer() native "return this.dataTransfer;";
+ _ClipboardJs get dataTransfer() native "return this.dataTransfer;";
- NodeJs get fromElement() native "return this.fromElement;";
+ _NodeJs get fromElement() native "return this.fromElement;";
bool get metaKey() native "return this.metaKey;";
@@ -21,7 +21,7 @@ class MouseEventJs extends UIEventJs implements MouseEvent native "*MouseEvent"
int get offsetY() native "return this.offsetY;";
- EventTargetJs get relatedTarget() native "return this.relatedTarget;";
+ _EventTargetJs get relatedTarget() native "return this.relatedTarget;";
int get screenX() native "return this.screenX;";
@@ -29,7 +29,7 @@ class MouseEventJs extends UIEventJs implements MouseEvent native "*MouseEvent"
bool get shiftKey() native "return this.shiftKey;";
- NodeJs get toElement() native "return this.toElement;";
+ _NodeJs get toElement() native "return this.toElement;";
int get webkitMovementX() native "return this.webkitMovementX;";
@@ -39,5 +39,5 @@ class MouseEventJs extends UIEventJs implements MouseEvent native "*MouseEvent"
int get y() native "return this.y;";
- void initMouseEvent(String type, bool canBubble, bool cancelable, DOMWindowJs view, int detail, int screenX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, int button, EventTargetJs relatedTarget) native;
+ void initMouseEvent(String type, bool canBubble, bool cancelable, _DOMWindowJs view, int detail, int screenX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, int button, _EventTargetJs relatedTarget) native;
}
« no previous file with comments | « client/dom/generated/src/frog/Metadata.dart ('k') | client/dom/generated/src/frog/MutationCallback.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698