• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
7import enum
8
9from crossbench import compat
10
11
12@enum.unique
13class ResultLocation(compat.StrEnumWithHelp):
14  LOCAL = ("local",
15           "Probe always produces results on the runner's local platform.")
16  BROWSER = ("browser",
17             ("Probe produces results on the browser's platform. "
18              "This can be either remote (for instance android browser) "
19              "or local (default system browser)."))
20