1# Copyright 2024 The Chromium Authors 2# Use of this source code is governed by a BSD-style license that can be 3# found in the LICENSE file. 4 5from __future__ import annotations 6 7from crossbench.benchmarks.base import PressBenchmark 8 9 10class MotionMarkBenchmark(PressBenchmark): 11 12 @classmethod 13 def short_base_name(cls) -> str: 14 return "mm" 15 16 @classmethod 17 def base_name(cls) -> str: 18 return "motionmark" 19