| Index: tools/perf/measurements/tab_switching.py
|
| diff --git a/tools/perf/measurements/tab_switching.py b/tools/perf/measurements/tab_switching.py
|
| index e26df13a5127e7f65451d2dd7cab57384e00eff1..1d2b123b384cb4752b98119b6593839aa4a5b643 100644
|
| --- a/tools/perf/measurements/tab_switching.py
|
| +++ b/tools/perf/measurements/tab_switching.py
|
| @@ -48,6 +48,7 @@ class TabSwitching(page_test.PageTest):
|
| self._power_metric = power.PowerMetric(platform, TabSwitching.SAMPLE_TIME)
|
|
|
| def TabForPage(self, page, browser):
|
| + del page # unused
|
| if self.first_page_in_storyset:
|
| # The initial browser window contains a single tab, navigate that tab
|
| # rather than creating a new one.
|
| @@ -108,4 +109,5 @@ class TabSwitching(page_test.PageTest):
|
| keychain_metric.KeychainMetric().AddResults(tab, results)
|
|
|
| def DidRunPage(self, platform):
|
| + del platform # unused
|
| self._power_metric.Close()
|
|
|