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 #ifndef ASH_COMMON_SYSTEM_TRAY_SYSTEM_TRAY_CONTROLLER_H_ | 5 #ifndef ASH_COMMON_SYSTEM_TRAY_SYSTEM_TRAY_CONTROLLER_H_ |
6 #define ASH_COMMON_SYSTEM_TRAY_SYSTEM_TRAY_CONTROLLER_H_ | 6 #define ASH_COMMON_SYSTEM_TRAY_SYSTEM_TRAY_CONTROLLER_H_ |
7 | 7 |
8 #include "ash/ash_export.h" | 8 #include "ash/ash_export.h" |
9 #include "ash/public/interfaces/system_tray.mojom.h" | 9 #include "ash/public/interfaces/system_tray.mojom.h" |
10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
44 void ShowAccessibilitySettings(); | 44 void ShowAccessibilitySettings(); |
45 void ShowPaletteHelp(); | 45 void ShowPaletteHelp(); |
46 void ShowPaletteSettings(); | 46 void ShowPaletteSettings(); |
47 void ShowPublicAccountInfo(); | 47 void ShowPublicAccountInfo(); |
48 void ShowNetworkConfigure(const std::string& network_id); | 48 void ShowNetworkConfigure(const std::string& network_id); |
49 void ShowNetworkCreate(const std::string& type); | 49 void ShowNetworkCreate(const std::string& type); |
50 void ShowThirdPartyVpnCreate(const std::string& extension_id); | 50 void ShowThirdPartyVpnCreate(const std::string& extension_id); |
51 void ShowNetworkSettings(const std::string& network_id); | 51 void ShowNetworkSettings(const std::string& network_id); |
52 void ShowProxySettings(); | 52 void ShowProxySettings(); |
53 void SignOut(); | 53 void SignOut(); |
54 void RequestRestartForUpdate(); | 54 void RequestRestartForUpdate(bool always_reboot); |
James Cook
2016/11/30 23:01:40
Can the "always_reboot" information be cached in t
| |
55 | 55 |
56 // Binds the mojom::SystemTray interface to this object. | 56 // Binds the mojom::SystemTray interface to this object. |
57 void BindRequest(mojom::SystemTrayRequest request); | 57 void BindRequest(mojom::SystemTrayRequest request); |
58 | 58 |
59 private: | 59 private: |
60 // mojom::SystemTray: | 60 // mojom::SystemTray: |
61 void SetClient(mojom::SystemTrayClientPtr client) override; | 61 void SetClient(mojom::SystemTrayClientPtr client) override; |
62 void SetUse24HourClock(bool use_24_hour) override; | 62 void SetUse24HourClock(bool use_24_hour) override; |
63 | 63 |
64 // Client interface in chrome browser. Only bound on Chrome OS. | 64 // Client interface in chrome browser. Only bound on Chrome OS. |
65 mojom::SystemTrayClientPtr system_tray_client_; | 65 mojom::SystemTrayClientPtr system_tray_client_; |
66 | 66 |
67 // Bindings for the SystemTray interface. | 67 // Bindings for the SystemTray interface. |
68 mojo::BindingSet<mojom::SystemTray> bindings_; | 68 mojo::BindingSet<mojom::SystemTray> bindings_; |
69 | 69 |
70 // The type of clock hour display: 12 or 24 hour. | 70 // The type of clock hour display: 12 or 24 hour. |
71 base::HourClockType hour_clock_type_; | 71 base::HourClockType hour_clock_type_; |
72 | 72 |
73 DISALLOW_COPY_AND_ASSIGN(SystemTrayController); | 73 DISALLOW_COPY_AND_ASSIGN(SystemTrayController); |
74 }; | 74 }; |
75 | 75 |
76 } // namspace ash | 76 } // namspace ash |
77 | 77 |
78 #endif // ASH_COMMON_SYSTEM_TRAY_SYSTEM_TRAY_CONTROLLER_H_ | 78 #endif // ASH_COMMON_SYSTEM_TRAY_SYSTEM_TRAY_CONTROLLER_H_ |
OLD | NEW |