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(int64 delay_in_milliseconds); | |
|
sky
2016/09/09 21:42:30
int64 here seems like overkill. Do we really want
riajiang
2016/09/12 16:15:46
int32?
| |
| 11 }; | |
| OLD | NEW |