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

Unified Diff: content/browser/vr/vr_device.h

Issue 1967633002: Updated VRService to match the latest Blink WebVR interface. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: And we're back to removing all the array size checks Created 4 years, 7 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
« no previous file with comments | « content/browser/vr/test/fake_vr_device.cc ('k') | content/browser/vr/vr_device_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/vr/vr_device.h
diff --git a/content/browser/vr/vr_device.h b/content/browser/vr/vr_device.h
index 4b7cb302b789af4d0d88559449428a115d06431d..a5d9ed618b4c2bf15a7754346715696f5a9f06f3 100644
--- a/content/browser/vr/vr_device.h
+++ b/content/browser/vr/vr_device.h
@@ -30,9 +30,9 @@ class VRDevice {
VRDeviceProvider* provider() const { return provider_; }
unsigned int id() const { return id_; }
- virtual blink::mojom::VRDeviceInfoPtr GetVRDevice() = 0;
- virtual blink::mojom::VRSensorStatePtr GetSensorState() = 0;
- virtual void ResetSensor() = 0;
+ virtual blink::mojom::VRDisplayPtr GetVRDevice() = 0;
+ virtual blink::mojom::VRPosePtr GetPose() = 0;
+ virtual void ResetPose() = 0;
private:
VRDeviceProvider* provider_;
« no previous file with comments | « content/browser/vr/test/fake_vr_device.cc ('k') | content/browser/vr/vr_device_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698