| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 package org.chromium.chrome.browser.vr_shell; | 5 package org.chromium.chrome.browser.vr_shell; |
| 6 | 6 |
| 7 import android.app.PendingIntent; | 7 import android.app.PendingIntent; |
| 8 import android.content.ComponentName; | 8 import android.content.ComponentName; |
| 9 import android.content.Intent; | 9 import android.content.Intent; |
| 10 | 10 |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 | 50 |
| 51 /** | 51 /** |
| 52 * Sets VR Mode to |enabled|. | 52 * Sets VR Mode to |enabled|. |
| 53 */ | 53 */ |
| 54 void setVrModeEnabled(boolean enabled); | 54 void setVrModeEnabled(boolean enabled); |
| 55 | 55 |
| 56 /** | 56 /** |
| 57 * @return Whether the current Viewer is a Daydream Viewer. | 57 * @return Whether the current Viewer is a Daydream Viewer. |
| 58 */ | 58 */ |
| 59 Boolean isDaydreamCurrentViewer(); | 59 Boolean isDaydreamCurrentViewer(); |
| 60 |
| 61 /** |
| 62 * Launch the stereoscopic, 3D VR launcher homescreen. |
| 63 */ |
| 64 void launchVrHomescreen(); |
| 60 } | 65 } |
| OLD | NEW |