Chromium Code Reviews| Index: base/task_scheduler/switches.cc |
| diff --git a/base/task_scheduler/switches.cc b/base/task_scheduler/switches.cc |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..4dd3bbc2b4a470367aa41f3545d28494a9215b7e |
| --- /dev/null |
| +++ b/base/task_scheduler/switches.cc |
| @@ -0,0 +1,12 @@ |
| +// Copyright 2016 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#include "base/task_scheduler/switches.h" |
| + |
| +namespace switches { |
| + |
| +const char kDisableBrowserTaskScheduler[] = "disable-browser-task-scheduler"; |
| +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.
|
| + |
| +} // namespace switches |