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

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

Issue 2351893002: mash: Fix system tray clock 12/24 hour time setting (Closed)
Patch Set: tweak Created 4 years, 3 months 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
OLDNEW
(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 {
James Cook 2016/09/19 22:51:38 Do we have a naming convention for these things? m
James Cook 2016/09/20 01:52:11 Ping?
sky 2016/09/20 02:45:16 Sorry, somehow missed your question. One naming co
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);
12 };
13
14 // TODO(jamescook): SystemTrayDelegate to communicate from ash to chrome.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698