| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 module ash.mojom; | 5 module ash.mojom; |
| 6 | 6 |
| 7 // Allows clients (e.g. Chrome browser) to control the ash system tray menu. | 7 // Allows clients (e.g. Chrome browser) to control the ash system tray menu. |
| 8 interface SystemTray { | 8 interface SystemTray { |
| 9 // Sets the clock to use 24 hour time formatting if |use_24_hour| is true. | 9 // Sets the clock to use 24 hour time formatting if |use_24_hour| is true. |
| 10 // Otherwise sets 12 hour time formatting. | 10 // Otherwise sets 12 hour time formatting. |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 ShowPaletteHelp(); | 47 ShowPaletteHelp(); |
| 48 | 48 |
| 49 // Shows the settings related to the stylus tool palette. | 49 // Shows the settings related to the stylus tool palette. |
| 50 ShowPaletteSettings(); | 50 ShowPaletteSettings(); |
| 51 | 51 |
| 52 // Shows information about public account mode. | 52 // Shows information about public account mode. |
| 53 ShowPublicAccountInfo(); | 53 ShowPublicAccountInfo(); |
| 54 | 54 |
| 55 // TODO(crbug.com/647412): ShowEnterpriseInfo(); | 55 // TODO(crbug.com/647412): ShowEnterpriseInfo(); |
| 56 | 56 |
| 57 // Shows UI to configure or activate the network specified by |service_path|, | 57 // Shows UI to configure or activate the network specified by |network_id|, |
| 58 // which may include showing payment or captive portal UI when appropriate. | 58 // which may include showing payment or captive portal UI when appropriate. |
| 59 ShowNetworkConfigure(string service_path); | 59 ShowNetworkConfigure(string network_id); |
| 60 | 60 |
| 61 // Shows settings related to networking. If |network_id| is empty, shows | 61 // Shows settings related to networking. If |network_id| is empty, shows |
| 62 // general settings. Otherwise shows settings for the individual network. | 62 // general settings. Otherwise shows settings for the individual network. |
| 63 // On devices |network_id| is a GUID, but on Linux desktop and in tests it can | 63 // On devices |network_id| is a GUID, but on Linux desktop and in tests it can |
| 64 // be any string. | 64 // be any string. |
| 65 ShowNetworkSettings(string network_id); | 65 ShowNetworkSettings(string network_id); |
| 66 | 66 |
| 67 // Shows UI for changing proxy settings. | 67 // Shows UI for changing proxy settings. |
| 68 ShowProxySettings(); | 68 ShowProxySettings(); |
| 69 }; | 69 }; |
| OLD | NEW |