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

Side by Side Diff: components/arc/common/input.mojom

Issue 1523643002: arc-bridge: Move most methods to Mojo interfaces (Closed) Base URL: https://chromium.googlesource.com/a/chromium/src.git@master
Patch Set: Fixed GN build Created 5 years 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
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 module arc;
6
7 interface InputInstance {
8 // Registers a virtual input device on the container side.
9 // |name| is the device name, like "Chrome OS Keyboard".
10 // |device_type| is the device type, like "keyboard".
11 // The virtual device will be reading 'struct input_event's from |fd|. The
12 // ownership of |fd| will be transferred to the receiver, so the sender must
13 // not close it.
14 RegisterInputDevice(string name,
15 string device_type,
16 handle fd);
17 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698