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 crossbench.probes.probe import Probe 6 7 8class EnvModifier(Probe): 9 """ 10 A class that modifies the running environment without actually producing 11 data like a Probe. 12 13 TODO(crbug.com/374017625): Add more logic here, and maybe not inherit from 14 Probe. 15 """ 16