| Index: tools/perf/metrics/iometric.py
|
| diff --git a/tools/perf/metrics/iometric.py b/tools/perf/metrics/iometric.py
|
| index b6d9bccb61c7668f90ed98021f157124e361699d..bb70f1ab39adf7481a2a79c2567786e095687099 100644
|
| --- a/tools/perf/metrics/iometric.py
|
| +++ b/tools/perf/metrics/iometric.py
|
| @@ -14,7 +14,7 @@ class IOMetric(Metric):
|
| @classmethod
|
| def CustomizeBrowserOptions(cls, options):
|
| # TODO(tonyg): This is the host platform, so not totally correct.
|
| - if sys.platform != 'darwin':
|
| + if sys.platform not in ('darwin', 'win32'):
|
| # TODO(playmobil): Get rid of this on all platforms crbug.com/361049.
|
| options.AppendExtraBrowserArgs('--no-sandbox')
|
|
|
|
|