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
|
@ -403,10 +403,10 @@ bool Browser::SetUserTasks(const std::vector<UserTask>& tasks) {
|
|||
return false;
|
||||
|
||||
JumpListCategory category;
|
||||
category.type = JumpListCategory::Type::TASKS;
|
||||
category.type = JumpListCategory::Type::kTasks;
|
||||
category.items.reserve(tasks.size());
|
||||
JumpListItem item;
|
||||
item.type = JumpListItem::Type::TASK;
|
||||
item.type = JumpListItem::Type::kTask;
|
||||
for (const auto& task : tasks) {
|
||||
item.title = task.title;
|
||||
item.path = task.program;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue