chromium/chrome/android/java/src/org/chromium/chrome/browser/customtabs/features/minimizedcustomtab/MinimizedCustomTabFeatureEngagementDelegate.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.customtabs.features.minimizedcustomtab;

/** Delegate for Minimized Custom Tabs feature engagement. */
interface MinimizedCustomTabFeatureEngagementDelegate {
    /** Notify the feature engagement system that the user engaged with the minimize button. */
    void notifyUserEngaged();
}