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.mojom; | |
| 6 | |
| 7 // Allows clients (e.g. Chrome browser) to control the ash system tray menu. | |
| 8 interface SystemTray { | |
| 9 // Sets the clock to use 24 hour time formatting if |use_24_hour| is true. | |
| 10 // Otherwise sets 12 hour time formatting. | |
| 11 SetUse24HourClock(bool use_24_hour); | |
|
Tom Sepez
2016/09/20 16:34:42
nit: do you want an enum in place of a bool? Woul
James Cook
2016/09/20 16:42:57
I looked at using an enum, but in this case the on
| |
| 12 }; | |
| 13 | |
| 14 // TODO(jamescook): SystemTrayDelegate to communicate from ash to chrome. | |
| OLD | NEW |