chromium/base/version_info/android/java/src/org/chromium/base/version_info/VersionConstantsBridge.java

// Copyright 2018 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.version_info;

import org.jni_zero.CalledByNative;

/** Bridge between native and VersionConstants.java. */
public class VersionConstantsBridge {
    @CalledByNative
    public static int getChannel() {
        return VersionConstants.CHANNEL;
    }
}