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

Unified Diff: device/vr/vr_device.h

Issue 2729523002: Re-land^2 WebVR compositor bypass via BrowserMain context + mailbox (Closed)
Patch Set: move //gpu/ipc/common:interfaces deps from android-specifc to all Created 3 years, 9 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/vr_device.h
diff --git a/device/vr/vr_device.h b/device/vr/vr_device.h
index be836ee12016272cdbcb11abc704cd63380d2396..ae7fefc65f58d3a50f7bca6d6425ed82013311c2 100644
--- a/device/vr/vr_device.h
+++ b/device/vr/vr_device.h
@@ -27,13 +27,17 @@ class DEVICE_VR_EXPORT VRDevice {
const base::Callback<void(mojom::VRDisplayInfoPtr)>& callback) = 0;
virtual void ResetPose() = 0;
- virtual void RequestPresent(const base::Callback<void(bool)>& callback) = 0;
+ virtual void RequestPresent(mojom::VRSubmitFrameClientPtr submit_client,
+ const base::Callback<void(bool)>& callback) = 0;
virtual void SetSecureOrigin(bool secure_origin) = 0;
virtual void ExitPresent() = 0;
- virtual void SubmitFrame(mojom::VRPosePtr pose) = 0;
+ virtual void SubmitFrame(int16_t frame_index,
+ const gpu::MailboxHolder& mailbox) = 0;
virtual void UpdateLayerBounds(int16_t frame_index,
mojom::VRLayerBoundsPtr left_bounds,
- mojom::VRLayerBoundsPtr right_bounds) = 0;
+ mojom::VRLayerBoundsPtr right_bounds,
+ int16_t source_width,
+ int16_t source_height) = 0;
virtual void GetVRVSyncProvider(mojom::VRVSyncProviderRequest request) = 0;
virtual void AddDisplay(VRDisplayImpl* display);

Powered by Google App Engine
This is Rietveld 408576698