OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2017 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 ui.mojom; | |
6 | |
7 import "ui/display/manager/chromeos/mojo/touch_device_transform.mojom"; | |
8 | |
9 interface TouchDeviceServer { | |
10 // Reset the touch configuration. |scales| maps from touch_id to the scale. | |
11 ConfigureTouchDevices(map<int32, double> scales, | |
Elliot Glaysher
2017/05/22 17:54:44
slightly off topic: is it the correct thing for mo
sky
2017/05/22 18:04:04
715340 is against whether mojo bindings should sti
| |
12 array<display.mojom.TouchDeviceTransform> transforms); | |
13 }; | |
OLD | NEW |