| 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 #ifndef UI_CHROMEOS_MATERIAL_DESIGN_ICON_CONTROLLER_H_ | |
| 6 #define UI_CHROMEOS_MATERIAL_DESIGN_ICON_CONTROLLER_H_ | |
| 7 | |
| 8 #include "ui/chromeos/ui_chromeos_export.h" | |
| 9 | |
| 10 namespace ui { | |
| 11 namespace md_icon_controller { | |
| 12 | |
| 13 // Sets whether or not material design versions of the network icons should | |
| 14 // be used (WiFi, cellular network, VPN, and network badges). Called by | |
| 15 // ash::MaterialDesignController upon initialization. | |
| 16 UI_CHROMEOS_EXPORT void SetUseMaterialDesignNetworkIcons(bool use); | |
| 17 | |
| 18 // Returns true if material design versions of the network icons should | |
| 19 // be used. | |
| 20 UI_CHROMEOS_EXPORT bool UseMaterialDesignNetworkIcons(); | |
| 21 | |
| 22 } // namespace md_icon_controller | |
| 23 } // namespace ui | |
| 24 | |
| 25 #endif // UI_CHROMEOS_MATERIAL_DESIGN_ICON_CONTROLLER_H_ | |
| OLD | NEW |