[Session restore] Rename group name Enabled to Restore.
[chromium-blink-merge.git] / tools / perf / benchmarks / webrtc.py
blobffd66d9d9a5b1ef77ac3c22e8e3530232d23280f
1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
5 from telemetry import benchmark
7 from measurements import webrtc
8 import page_sets
11 class WebRTC(benchmark.Benchmark):
12 """Obtains WebRTC metrics for a real-time video tests."""
13 test = webrtc.WebRTC
14 page_set = page_sets.WebrtcCasesPageSet
15 @classmethod
16 def Name(cls):
17 return 'webrtc.webrtc_cases'