| Index: tools/perf/benchmarks/tab_switching.py
|
| diff --git a/tools/perf/benchmarks/media.py b/tools/perf/benchmarks/tab_switching.py
|
| similarity index 51%
|
| copy from tools/perf/benchmarks/media.py
|
| copy to tools/perf/benchmarks/tab_switching.py
|
| index e588ce14fcfb41b8de4bfe3ea0cda097bd3240b0..d18dc5f235513b3b2947aee637746c353514a847 100644
|
| --- a/tools/perf/benchmarks/media.py
|
| +++ b/tools/perf/benchmarks/tab_switching.py
|
| @@ -1,11 +1,12 @@
|
| # Copyright 2013 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.
|
| -from measurements import media
|
| +
|
| from telemetry import test
|
|
|
| +from measurements import tab_switching
|
| +
|
|
|
| -class Media(test.Test):
|
| - """Obtains media metrics for key user scenarios."""
|
| - test = media.Media
|
| - page_set = 'page_sets/tough_video_cases.json'
|
| +class TabSwitchingTop10(test.Test):
|
| + test = tab_switching.TabSwitching
|
| + page_set = 'page_sets/top_10.json'
|
|
|