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

Unified Diff: lib/html/doc/interface/UIEvent.dartdoc

Issue 11090010: Remove explicit interface versions of dartdoc files. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 2 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 | « lib/html/doc/interface/TreeWalker.dartdoc ('k') | lib/html/doc/interface/UListElement.dartdoc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/html/doc/interface/UIEvent.dartdoc
diff --git a/lib/html/doc/interface/UIEvent.dartdoc b/lib/html/doc/interface/UIEvent.dartdoc
index 3b22ef60c100391dec43893f3c2921f1696206e3..9a0754b55a6dda46c3991ddf975e793a99f53f9b 100644
--- a/lib/html/doc/interface/UIEvent.dartdoc
+++ b/lib/html/doc/interface/UIEvent.dartdoc
@@ -2,40 +2,38 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
-// WARNING:
-// This file contains documentation that is merged into the real source.
-// Do not make code changes here.
+// WARNING: Do not edit - generated code.
/// @domName UIEvent
-interface UIEvent extends Event {
+abstract class UIEvent implements Event {
/** @domName UIEvent.charCode */
- final int charCode;
+ abstract int get charCode;
/** @domName UIEvent.detail */
- final int detail;
+ abstract int get detail;
/** @domName UIEvent.keyCode */
- final int keyCode;
+ abstract int get keyCode;
/** @domName UIEvent.layerX */
- final int layerX;
+ abstract int get layerX;
/** @domName UIEvent.layerY */
- final int layerY;
+ abstract int get layerY;
/** @domName UIEvent.pageX */
- final int pageX;
+ abstract int get pageX;
/** @domName UIEvent.pageY */
- final int pageY;
+ abstract int get pageY;
/** @domName UIEvent.view */
- final Window view;
+ abstract Window get view;
/** @domName UIEvent.which */
- final int which;
+ abstract int get which;
/** @domName UIEvent.initUIEvent */
- void initUIEvent(String type, bool canBubble, bool cancelable, Window view, int detail);
+ void initUIEvent(String type, bool canBubble, bool cancelable, LocalWindow view, int detail);
}
« no previous file with comments | « lib/html/doc/interface/TreeWalker.dartdoc ('k') | lib/html/doc/interface/UListElement.dartdoc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698