refactor: Chromium code style for enum classes (#26165)
This commit is contained in:
parent
dbf2931f0e
commit
1c99a9b425
34 changed files with 300 additions and 295 deletions
|
@ -55,10 +55,10 @@ class TrayIcon {
|
|||
virtual std::string GetTitle() = 0;
|
||||
#endif
|
||||
|
||||
enum class IconType { None, Info, Warning, Error, Custom };
|
||||
enum class IconType { kNone, kInfo, kWarning, kError, kCustom };
|
||||
|
||||
struct BalloonOptions {
|
||||
IconType icon_type = IconType::Custom;
|
||||
IconType icon_type = IconType::kCustom;
|
||||
#if defined(OS_WIN)
|
||||
HICON icon = nullptr;
|
||||
#else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue