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

Side by Side Diff: tools/dom/templates/html/dart2js/impl_KeyboardEvent.darttemplate

Issue 1754523006: Beginning fix for KeyEvent,KeyboardEvent and UIEvent changes in roll 45 (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Merged Created 4 years, 9 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
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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 5
6 /** 6 /**
7 * An event that describes user interaction with the keyboard. 7 * An event that describes user interaction with the keyboard.
8 * 8 *
9 * The [type] of the event identifies what kind of interaction occurred. 9 * The [type] of the event identifies what kind of interaction occurred.
10 * 10 *
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 type, canBubble, cancelable, view, keyIdentifier, keyLocation, 55 type, canBubble, cancelable, view, keyIdentifier, keyLocation,
56 ctrlKey, altKey, shiftKey, metaKey); 56 ctrlKey, altKey, shiftKey, metaKey);
57 } 57 }
58 } 58 }
59 59
60 @DomName('KeyboardEvent.keyCode') 60 @DomName('KeyboardEvent.keyCode')
61 int get keyCode => _keyCode; 61 int get keyCode => _keyCode;
62 62
63 @DomName('KeyboardEvent.charCode') 63 @DomName('KeyboardEvent.charCode')
64 int get charCode => _charCode; 64 int get charCode => _charCode;
65
66 @DomName('KeyboardEvent.which')
67 int get which => _which;
65 $!MEMBERS 68 $!MEMBERS
66 } 69 }
OLDNEW
« no previous file with comments | « tools/dom/src/dartium_KeyEvent.dart ('k') | tools/dom/templates/html/dartium/impl_KeyboardEvent.darttemplate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698