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

Unified Diff: device/vr/android/gvr/gvr_device_provider.cc

Issue 2505493004: Wired up vrdisplayactivate/deactivate (Closed)
Patch Set: Again with the upstream issues Created 4 years, 1 month 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
« no previous file with comments | « device/vr/android/gvr/gvr_device.cc ('k') | device/vr/vr_device.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/vr/android/gvr/gvr_device_provider.cc
diff --git a/device/vr/android/gvr/gvr_device_provider.cc b/device/vr/android/gvr/gvr_device_provider.cc
index f3e34acb87fb03775295e55fccf6dad783c23a5f..cf94fb2d5228869c8cb40c50568a19dd4ca68944 100644
--- a/device/vr/android/gvr/gvr_device_provider.cc
+++ b/device/vr/android/gvr/gvr_device_provider.cc
@@ -92,13 +92,13 @@ void GvrDeviceProvider::OnGvrDelegateRemoved() {
void GvrDeviceProvider::OnDisplayBlur() {
if (!vr_device_)
return;
- vr_device_->OnDisplayBlur();
+ vr_device_->OnBlur();
}
void GvrDeviceProvider::OnDisplayFocus() {
if (!vr_device_)
return;
- vr_device_->OnDisplayFocus();
+ vr_device_->OnFocus();
}
void GvrDeviceProvider::SwitchToNonPresentingDelegate() {
« no previous file with comments | « device/vr/android/gvr/gvr_device.cc ('k') | device/vr/vr_device.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698