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

Side by Side Diff: device/vr/android/gvr/gvr_device.h

Issue 2361533003: Expose secure origin state to WebVR renderer (Closed)
Patch Set: Rebase Created 4 years, 3 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
« no previous file with comments | « device/vr/android/gvr/gvr_delegate.h ('k') | device/vr/android/gvr/gvr_device.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 #ifndef DEVICE_VR_ANDROID_GVR_DEVICE_H 5 #ifndef DEVICE_VR_ANDROID_GVR_DEVICE_H
6 #define DEVICE_VR_ANDROID_GVR_DEVICE_H 6 #define DEVICE_VR_ANDROID_GVR_DEVICE_H
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "device/vr/vr_device.h" 9 #include "device/vr/vr_device.h"
10 10
11 namespace gvr { 11 namespace gvr {
12 class GvrApi; 12 class GvrApi;
13 } // namespace gvr 13 } // namespace gvr
14 14
15 namespace device { 15 namespace device {
16 16
17 class GvrDeviceProvider; 17 class GvrDeviceProvider;
18 class GvrDelegate; 18 class GvrDelegate;
19 19
20 class GvrDevice : public VRDevice { 20 class GvrDevice : public VRDevice {
21 public: 21 public:
22 GvrDevice(GvrDeviceProvider* provider, GvrDelegate* delegate); 22 GvrDevice(GvrDeviceProvider* provider, GvrDelegate* delegate);
23 ~GvrDevice() override; 23 ~GvrDevice() override;
24 24
25 // VRDevice 25 // VRDevice
26 VRDisplayPtr GetVRDevice() override; 26 VRDisplayPtr GetVRDevice() override;
27 VRPosePtr GetPose() override; 27 VRPosePtr GetPose() override;
28 void ResetPose() override; 28 void ResetPose() override;
29 29
30 bool RequestPresent() override; 30 bool RequestPresent(bool secure_origin) override;
31 void ExitPresent() override; 31 void ExitPresent() override;
32 32
33 void SubmitFrame(VRPosePtr pose) override; 33 void SubmitFrame(VRPosePtr pose) override;
34 void UpdateLayerBounds(VRLayerBoundsPtr leftBounds, 34 void UpdateLayerBounds(VRLayerBoundsPtr leftBounds,
35 VRLayerBoundsPtr rightBounds) override; 35 VRLayerBoundsPtr rightBounds) override;
36 36
37 void SetDelegate(GvrDelegate* delegate); 37 void SetDelegate(GvrDelegate* delegate);
38 38
39 private: 39 private:
40 gvr::GvrApi* GetGvrApi(); 40 gvr::GvrApi* GetGvrApi();
41 41
42 GvrDelegate* delegate_; 42 GvrDelegate* delegate_;
43 GvrDeviceProvider* gvr_provider_; 43 GvrDeviceProvider* gvr_provider_;
44 bool secure_origin_;
44 45
45 DISALLOW_COPY_AND_ASSIGN(GvrDevice); 46 DISALLOW_COPY_AND_ASSIGN(GvrDevice);
46 }; 47 };
47 48
48 } // namespace device 49 } // namespace device
49 50
50 #endif // DEVICE_VR_ANDROID_GVR_DEVICE_H 51 #endif // DEVICE_VR_ANDROID_GVR_DEVICE_H
OLDNEW
« no previous file with comments | « device/vr/android/gvr/gvr_delegate.h ('k') | device/vr/android/gvr/gvr_device.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698