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

Side by Side Diff: client/html/src/Event.dart

Issue 8363040: Implement measurement using futures (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: take2 Created 9 years, 1 month 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 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 // WARNING: Do not edit - generated code.
6
7 interface Event { 5 interface Event {
8 6
9 static final int AT_TARGET = 2; 7 static final int AT_TARGET = 2;
10 8
11 static final int BLUR = 8192; 9 static final int BLUR = 8192;
12 10
13 static final int BUBBLING_PHASE = 3; 11 static final int BUBBLING_PHASE = 3;
14 12
15 static final int CAPTURING_PHASE = 1; 13 static final int CAPTURING_PHASE = 1;
16 14
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 String get type(); 69 String get type();
72 70
73 void initEvent(String eventTypeArg, bool canBubbleArg, bool cancelableArg); 71 void initEvent(String eventTypeArg, bool canBubbleArg, bool cancelableArg);
74 72
75 void preventDefault(); 73 void preventDefault();
76 74
77 void stopImmediatePropagation(); 75 void stopImmediatePropagation();
78 76
79 void stopPropagation(); 77 void stopPropagation();
80 } 78 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698