blob: 69cd2dcd9fd603acf4f39e920a0726a5df04f55e [file] [log] [blame]
// Copyright 2016 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.chrome.browser.vr;
/**
* Abstracts away the VrCoreVersionCheckerImpl class, which may or may not be present at runtime
* depending on compile flags.
*/
public interface VrCoreVersionChecker {
public static final String VR_CORE_PACKAGE_ID = "com.google.vr.vrcore";
/**
* Returns the compatibility of VrCore with Chrome.
*/
int getVrCoreCompatibility();
/**
* Returns a native VrCoreInfo object.
*/
long makeNativeVrCoreInfo();
}