blob: 08758ce4b1daa4a4af8ef5fa31690bcb8623f102 [file] [log] [blame]
// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package org.chromium.base.test.transit;
/** A {@link Condition} that is checked in the UI thread. */
public abstract class UiThreadCondition extends Condition {
public UiThreadCondition() {
super(/* isRunOnUiThread= */ true);
}
}