Chromium Code Reviews| 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 #include "base/task_scheduler/switches.h" | |
| 6 | |
| 7 namespace switches { | |
| 8 | |
| 9 const char kDisableBrowserTaskScheduler[] = "disable-browser-task-scheduler"; | |
| 10 const char kEnableBrowserTaskScheduler[] = "enable-browser-task-scheduler"; | |
|
gab
2016/08/10 16:48:57
Can we have a DCHECK in chrome if --enable-browser
robliao
2016/08/10 20:10:52
Added a DCHECK in the variations check.
| |
| 11 | |
| 12 } // namespace switches | |
| OLD | NEW |