summaryrefslogtreecommitdiffstats
path: root/ui/keyboard/resources/webui/api_adapter.js
blob: e336b25269e114c640fb01129f6f3bd7e6cecf8f (plain)
1
2
3
4
5
6
7
8
9
10
// Copyright (c) 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

function sendKeyEvent(keyEvent) {
  keyEvent.type = 'keydown';
  chrome.send('sendKeyEvent', [ keyEvent ]);
  keyEvent.type = 'keyup';
  chrome.send('sendKeyEvent', [ keyEvent ]);
}