Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(247)

Unified Diff: device/vr/android/java/src/org/chromium/device/vr/CardboardVRDevice.java

Issue 2219203002: Migrate WebVR Cardboard implementation to GVR (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@gvr_third_party
Patch Set: Disabling WebVR on non-component builds Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: device/vr/android/java/src/org/chromium/device/vr/CardboardVRDevice.java
diff --git a/device/vr/android/java/src/org/chromium/device/vr/CardboardVRDevice.java b/device/vr/android/java/src/org/chromium/device/vr/CardboardVRDevice.java
deleted file mode 100644
index ba7d4d817385529df92a5449fd899b0ab67e688b..0000000000000000000000000000000000000000
--- a/device/vr/android/java/src/org/chromium/device/vr/CardboardVRDevice.java
+++ /dev/null
@@ -1,88 +0,0 @@
-// Copyright 2015 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.device.vr;
-
-import android.content.Context;
-
-import com.google.vrtoolkit.cardboard.CardboardDeviceParams;
-import com.google.vrtoolkit.cardboard.FieldOfView;
-import com.google.vrtoolkit.cardboard.HeadMountedDisplay;
-import com.google.vrtoolkit.cardboard.HeadMountedDisplayManager;
-import com.google.vrtoolkit.cardboard.ScreenParams;
-import com.google.vrtoolkit.cardboard.sensors.HeadTracker;
-
-import org.chromium.base.annotations.CalledByNative;
-import org.chromium.base.annotations.JNINamespace;
-
-/**
- * This is the implementation of the C++ counterpart CardboardVRDevice.
- */
-@JNINamespace("device")
-class CardboardVRDevice {
- private static final String TAG = "CardboardVRDevice";
- private final HeadMountedDisplayManager mHMDManager;
- private final HeadTracker mHeadTracker;
-
- @CalledByNative
- private static CardboardVRDevice create(Context context) {
- return new CardboardVRDevice(context);
- }
-
- private CardboardVRDevice(Context context) {
- mHMDManager = new HeadMountedDisplayManager(context);
-
- mHeadTracker = HeadTracker.createFromContext(context);
- mHeadTracker.setNeckModelEnabled(true);
- mHeadTracker.startTracking();
- }
-
- @CalledByNative
- private void getFieldOfView(float[] outFov) {
- HeadMountedDisplay hmd = mHMDManager.getHeadMountedDisplay();
- CardboardDeviceParams deviceParams = hmd.getCardboardDeviceParams();
- FieldOfView fov = deviceParams.getLeftEyeMaxFov();
- outFov[0] = fov.getTop();
- outFov[1] = fov.getBottom();
- outFov[2] = fov.getLeft();
- outFov[3] = fov.getRight();
- }
-
- @CalledByNative
- private float getIpd() {
- HeadMountedDisplay hmd = mHMDManager.getHeadMountedDisplay();
- CardboardDeviceParams deviceParams = hmd.getCardboardDeviceParams();
- return deviceParams.getInterLensDistance();
- }
-
- @CalledByNative
- private String getDeviceName() {
- HeadMountedDisplay hmd = mHMDManager.getHeadMountedDisplay();
- CardboardDeviceParams deviceParams = hmd.getCardboardDeviceParams();
- return deviceParams.getVendor() + " " + deviceParams.getModel();
- }
-
- @CalledByNative
- private void getScreenSize(int[] outSize) {
- HeadMountedDisplay hmd = mHMDManager.getHeadMountedDisplay();
- ScreenParams screenParams = hmd.getScreenParams();
- outSize[0] = screenParams.getWidth();
- outSize[1] = screenParams.getHeight();
- }
-
- @CalledByNative
- private void getSensorState(float[] outMatrix) {
- mHeadTracker.getLastHeadView(outMatrix, 0);
- }
-
- @CalledByNative
- private void stopTracking() {
- mHeadTracker.stopTracking();
- }
-
- @CalledByNative
- private void resetSensor() {
- mHeadTracker.resetTracker();
- }
-}

Powered by Google App Engine
This is Rietveld 408576698