Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2016 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 ash.autoclick.mojom; | |
| 6 | |
| 7 // Used by Chrome to set the time to wait in milliseconds from when the mouse | |
| 8 // stops moving to when the autoclick event is sent in accessibility_autoclick. | |
| 9 interface AutoclickController { | |
| 10 SetAutoclickDelay(int32 delay_in_milliseconds); | |
|
Tom Sepez
2016/09/12 17:41:37
nit: can this be unsigned, or does something like
riajiang
2016/09/12 18:23:49
Yes it should be uint32.
| |
| 11 }; | |
| OLD | NEW |