chromium/chrome/browser/hub/android/java/src/org/chromium/chrome/browser/hub/PaneLookup.java

// 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.chrome.browser.hub;

import androidx.annotation.Nullable;

/** Interface for providing access to Panes. */
public interface PaneLookup {
    @Nullable
    Pane getPaneForId(@PaneId int paneId);
}