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

Side by Side Diff: device/vr/test/fake_vr_device.h

Issue 2729523002: Re-land^2 WebVR compositor bypass via BrowserMain context + mailbox (Closed)
Patch Set: Further cleanups 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 #ifndef DEVICE_VR_TEST_FAKE_VR_DEVICE_H_ 5 #ifndef DEVICE_VR_TEST_FAKE_VR_DEVICE_H_
6 #define DEVICE_VR_TEST_FAKE_VR_DEVICE_H_ 6 #define DEVICE_VR_TEST_FAKE_VR_DEVICE_H_
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "base/memory/ref_counted.h" 9 #include "base/memory/ref_counted.h"
10 #include "device/vr/vr_device.h" 10 #include "device/vr/vr_device.h"
(...skipping 12 matching lines...) Expand all
23 void SetVRDevice(const mojom::VRDisplayInfoPtr& device); 23 void SetVRDevice(const mojom::VRDisplayInfoPtr& device);
24 24
25 // VRDevice 25 // VRDevice
26 void GetVRDevice( 26 void GetVRDevice(
27 const base::Callback<void(mojom::VRDisplayInfoPtr)>& callback) override; 27 const base::Callback<void(mojom::VRDisplayInfoPtr)>& callback) override;
28 void ResetPose() override; 28 void ResetPose() override;
29 29
30 void RequestPresent(const base::Callback<void(bool)>& callback) override; 30 void RequestPresent(const base::Callback<void(bool)>& callback) override;
31 void SetSecureOrigin(bool secure_origin) override; 31 void SetSecureOrigin(bool secure_origin) override;
32 void ExitPresent() override; 32 void ExitPresent() override;
33 void SubmitFrame(mojom::VRPosePtr pose) override; 33 void SubmitFrame(mojom::VRPosePtr pose,
34 mojom::VRSubmitFrameClientPtr submit_client) override;
34 void UpdateLayerBounds(int16_t frame_index, 35 void UpdateLayerBounds(int16_t frame_index,
35 mojom::VRLayerBoundsPtr leftBounds, 36 mojom::VRLayerBoundsPtr leftBounds,
36 mojom::VRLayerBoundsPtr rightBounds) override; 37 mojom::VRLayerBoundsPtr rightBounds) override;
37 void GetVRVSyncProvider(mojom::VRVSyncProviderRequest request) override; 38 void GetVRVSyncProvider(mojom::VRVSyncProviderRequest request) override;
38 39
39 private: 40 private:
40 mojom::VREyeParametersPtr InitEye(float fov, float offset, uint32_t size); 41 mojom::VREyeParametersPtr InitEye(float fov, float offset, uint32_t size);
41 42
42 mojom::VRDisplayInfoPtr device_; 43 mojom::VRDisplayInfoPtr device_;
43 44
44 DISALLOW_COPY_AND_ASSIGN(FakeVRDevice); 45 DISALLOW_COPY_AND_ASSIGN(FakeVRDevice);
45 }; 46 };
46 47
47 } // namespace device 48 } // namespace device
48 49
49 #endif // DEVICE_VR_TEST_FAKE_VR_DEVICE_H_ 50 #endif // DEVICE_VR_TEST_FAKE_VR_DEVICE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698