chromium/chrome/browser/model_execution/android/java/src/org/chromium/chrome/browser/model_execution/ModelExecutionFeature.java

// Copyright 2024 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.model_execution;

import androidx.annotation.IntDef;

import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;

@IntDef({
    ModelExecutionFeature.PAGE_INFO,
})
@Retention(RetentionPolicy.SOURCE)
public @interface ModelExecutionFeature {
    public static int PAGE_INFO = 1;
}