Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(860)

Side by Side Diff: ash/public/interfaces/system_tray.mojom

Issue 2568413002: Revert of ash: Use system tray mojo interface to show system update tray icon (Closed)
Patch Set: Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ash/public/interfaces/BUILD.gn ('k') | ash/public/interfaces/update.mojom » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 import "ash/public/interfaces/update.mojom";
8
9 // 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.
10 interface SystemTray { 8 interface SystemTray {
11 // Sets the client interface. 9 // Sets the client interface.
12 SetClient(SystemTrayClient client); 10 SetClient(SystemTrayClient client);
13 11
14 // Sets the clock to use 24 hour time formatting if |use_24_hour| is true. 12 // Sets the clock to use 24 hour time formatting if |use_24_hour| is true.
15 // Otherwise sets 12 hour time formatting. 13 // Otherwise sets 12 hour time formatting.
16 SetUse24HourClock(bool use_24_hour); 14 SetUse24HourClock(bool use_24_hour);
17
18 // Shows an icon in the system tray indicating that a software update is
19 // available. Once shown the icon persists until reboot. |severity| and
20 // |factory_reset_required| are used to set the icon, color, and tooltip.
21 ShowUpdateIcon(UpdateSeverity severity, bool factory_reset_required);
22 }; 15 };
23 16
24 // Allows ash system tray to control a client (e.g. Chrome browser). Requests 17 // Allows ash system tray to control a client (e.g. Chrome browser). Requests
25 // often involve preferences or web UI that is not available to ash. 18 // often involve preferences or web UI that is not available to ash.
26 interface SystemTrayClient { 19 interface SystemTrayClient {
27 // Shows general settings UI. 20 // Shows general settings UI.
28 ShowSettings(); 21 ShowSettings();
29 22
30 // Shows the settings related to date, timezone etc. 23 // Shows the settings related to date, timezone etc.
31 ShowDateSettings(); 24 ShowDateSettings();
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 // Shows UI for changing proxy settings. 80 // Shows UI for changing proxy settings.
88 ShowProxySettings(); 81 ShowProxySettings();
89 82
90 // Attempts to sign out the user. 83 // Attempts to sign out the user.
91 // TODO(jamescook): Migrate to a user or login service. crbug.com/665582 84 // TODO(jamescook): Migrate to a user or login service. crbug.com/665582
92 SignOut(); 85 SignOut();
93 86
94 // Attempts to restart the system for update. 87 // Attempts to restart the system for update.
95 RequestRestartForUpdate(); 88 RequestRestartForUpdate();
96 }; 89 };
OLDNEW
« no previous file with comments | « ash/public/interfaces/BUILD.gn ('k') | ash/public/interfaces/update.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698