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

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

Issue 2777903008: Removed deprecated WebVR functionality (Closed)
Patch Set: Another test re-baseline Created 3 years, 8 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 | « chrome/browser/android/vr_shell/vr_shell_gl.cc ('k') | device/vr/android/gvr/gvr_device.h » ('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_DELEGATE_H 5 #ifndef DEVICE_VR_ANDROID_GVR_DELEGATE_H
6 #define DEVICE_VR_ANDROID_GVR_DELEGATE_H 6 #define DEVICE_VR_ANDROID_GVR_DELEGATE_H
7 7
8 #include "device/vr/android/gvr/gvr_device_provider.h" 8 #include "device/vr/android/gvr/gvr_device_provider.h"
9 #include "device/vr/vr_export.h" 9 #include "device/vr/vr_export.h"
10 #include "device/vr/vr_service.mojom.h" 10 #include "device/vr/vr_service.mojom.h"
11 #include "third_party/gvr-android-sdk/src/libraries/headers/vr/gvr/capi/include/ gvr_types.h" 11 #include "third_party/gvr-android-sdk/src/libraries/headers/vr/gvr/capi/include/ gvr_types.h"
12 12
13 namespace device { 13 namespace device {
14 14
15 class DEVICE_VR_EXPORT GvrDelegate { 15 class DEVICE_VR_EXPORT GvrDelegate {
16 public: 16 public:
17 virtual void SetWebVRSecureOrigin(bool secure_origin) = 0; 17 virtual void SetWebVRSecureOrigin(bool secure_origin) = 0;
18 virtual void SubmitWebVRFrame(int16_t frame_index, 18 virtual void SubmitWebVRFrame(int16_t frame_index,
19 const gpu::MailboxHolder& mailbox) = 0; 19 const gpu::MailboxHolder& mailbox) = 0;
20 virtual void UpdateWebVRTextureBounds(int16_t frame_index, 20 virtual void UpdateWebVRTextureBounds(int16_t frame_index,
21 const gvr::Rectf& left_bounds, 21 const gvr::Rectf& left_bounds,
22 const gvr::Rectf& right_bounds, 22 const gvr::Rectf& right_bounds,
23 const gvr::Sizei& source_size) = 0; 23 const gvr::Sizei& source_size) = 0;
24 virtual void OnVRVsyncProviderRequest( 24 virtual void OnVRVsyncProviderRequest(
25 mojom::VRVSyncProviderRequest request) = 0; 25 mojom::VRVSyncProviderRequest request) = 0;
26 virtual void UpdateVSyncInterval(int64_t timebase_nanos, 26 virtual void UpdateVSyncInterval(int64_t timebase_nanos,
27 double interval_seconds) = 0; 27 double interval_seconds) = 0;
28 virtual void ResetPose() = 0;
29 virtual void CreateVRDisplayInfo( 28 virtual void CreateVRDisplayInfo(
30 const base::Callback<void(mojom::VRDisplayInfoPtr)>& callback, 29 const base::Callback<void(mojom::VRDisplayInfoPtr)>& callback,
31 uint32_t device_id) = 0; 30 uint32_t device_id) = 0;
32 31
33 protected: 32 protected:
34 virtual ~GvrDelegate() {} 33 virtual ~GvrDelegate() {}
35 }; 34 };
36 35
37 // GvrDelegate, which allows WebVR presentation. 36 // GvrDelegate, which allows WebVR presentation.
38 class DEVICE_VR_EXPORT PresentingGvrDelegate : public GvrDelegate {}; 37 class DEVICE_VR_EXPORT PresentingGvrDelegate : public GvrDelegate {};
(...skipping 16 matching lines...) Expand all
55 protected: 54 protected:
56 virtual ~GvrDelegateProvider() {} 55 virtual ~GvrDelegateProvider() {}
57 56
58 private: 57 private:
59 static base::Callback<GvrDelegateProvider*()> delegate_provider_; 58 static base::Callback<GvrDelegateProvider*()> delegate_provider_;
60 }; 59 };
61 60
62 } // namespace device 61 } // namespace device
63 62
64 #endif // DEVICE_VR_ANDROID_GVR_DELEGATE_H 63 #endif // DEVICE_VR_ANDROID_GVR_DELEGATE_H
OLDNEW
« no previous file with comments | « chrome/browser/android/vr_shell/vr_shell_gl.cc ('k') | device/vr/android/gvr/gvr_device.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698