| Index: tools/perf/measurements/startup.py
|
| diff --git a/tools/perf/measurements/startup.py b/tools/perf/measurements/startup.py
|
| index 8b57a486469e6b8286276653b5fcfd92865b8592..35ea99cc134eb6aeafa5fa5af83dd38520bc99c0 100644
|
| --- a/tools/perf/measurements/startup.py
|
| +++ b/tools/perf/measurements/startup.py
|
| @@ -2,6 +2,7 @@
|
| # Use of this source code is governed by a BSD-style license that can be
|
| # found in the LICENSE file.
|
|
|
| +from metrics import keychain_metric
|
| from metrics import startup_metric
|
| from telemetry.page import page_test
|
|
|
| @@ -29,12 +30,14 @@ class Startup(page_test.PageTest):
|
| options.AppendExtraBrowserArgs([
|
| '--enable-stats-collection-bindings'
|
| ])
|
| + keychain_metric.KeychainMetric.CustomizeBrowserOptions(options)
|
|
|
| def RunNavigateSteps(self, page, tab):
|
| # Overriden so that no page navigation occurs - startup to the NTP.
|
| pass
|
|
|
| def ValidateAndMeasurePage(self, page, tab, results):
|
| + keychain_metric.KeychainMetric().AddResults(tab, results)
|
| startup_metric.StartupMetric().AddResults(tab, results)
|
|
|
|
|
|
|