Chromium Code Reviews| Index: chrome/browser/conflicts/module_inspector_win.h |
| diff --git a/chrome/browser/conflicts/module_inspector_win.h b/chrome/browser/conflicts/module_inspector_win.h |
| index 3a036d69dc97e733cdc2640bf6cf2793a2b5f88b..3a8d29e2a3496d5855bef1155cd6b4cd760b1b20 100644 |
| --- a/chrome/browser/conflicts/module_inspector_win.h |
| +++ b/chrome/browser/conflicts/module_inspector_win.h |
| @@ -59,10 +59,9 @@ class ModuleInspector { |
| // The modules are put in queue until they are sent for inspection. |
| std::queue<ModuleInfoKey> queue_; |
| - // The traits used on the task that inspects the modules. It originally starts |
| - // at a BACKGROUND priority, but is changed to USER_VISIBLE when |
| - // IncreaseInspectionPriority() is called. |
| - base::TaskTraits inspection_task_traits_; |
| + // The TaskPriority of the task that inspects the modules. Is changed to |
| + // USER_VISIBLE when IncreaseInspectionPriority() is called. |
| + base::TaskPriority inspection_task_priority_ = base::TaskPriority::BACKGROUND; |
|
Patrick Monette
2017/05/08 20:35:11
I prefer to have all the initialization logic at t
fdoray
2017/05/08 20:40:02
Done.
|
| // The vector of paths to %env_var%, used to account for differences in |
| // localization and where people keep their files. |