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

Side by Side Diff: ui/keyboard/resources/send_key_event_webui.js

Issue 14161009: WebUIHandler for chrome://keyboard (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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
(Empty)
1 function sendKeyEvent(keyEvent) {
2 keyEvent.type = 'keydown';
3 chrome.send('sendKeyEvent', [ keyEvent ]);
4 keyEvent.type = 'keyup';
5 chrome.send('sendKeyEvent', [ keyEvent ]);
6 }
OLDNEW
« ui/keyboard/keyboard_util.cc ('K') | « ui/keyboard/resources/send_key_event.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698