Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 package org.chromium.chrome.browser.vr_shell; | |
| 6 | |
| 7 import com.google.vr.ndk.base.Version; | |
| 8 | |
| 9 /** | |
| 10 * Container class to provide the version and the compatibility with Chromium of the installed | |
| 11 * VrCore. | |
| 12 */ | |
| 13 public class VrCoreInfo { | |
| 14 public final Version gvrVersion; | |
|
ddorwin
2017/05/24 07:31:37
nit: Since this class is GVR-specific, "gvr" may b
tiborg
2017/05/25 00:06:02
I wanted to communicate that this is the version o
| |
| 15 @VrCoreCompatibility | |
| 16 public final int compatibility; | |
| 17 | |
| 18 public VrCoreInfo(Version gvrVersion, int compatibility) { | |
| 19 this.gvrVersion = gvrVersion; | |
| 20 this.compatibility = compatibility; | |
| 21 } | |
| 22 } | |
| OLD | NEW |