// Copyright 2022 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.support_lib_boundary; import androidx.annotation.RestrictTo; import androidx.annotation.StringDef; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Constants for ProcessGlobalConfig shared between chromium and AndroidX. */ public final class ProcessGlobalConfigConstants { private ProcessGlobalConfigConstants() {} /** @hide */ @RestrictTo(RestrictTo.Scope.LIBRARY) @StringDef(value = { DATA_DIRECTORY_SUFFIX, }) @Retention(RetentionPolicy.SOURCE) @Target({ElementType.PARAMETER, ElementType.METHOD}) public @interface ProcessGlobalConfigMapKey {} /** * Key for the data directory suffix in the process global config map that is read in chromium * via reflection into AndroidX class. */ public static final String DATA_DIRECTORY_SUFFIX = "DATA_DIRECTORY_SUFFIX"; }