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

Side by Side Diff: chrome/browser/android/vr_shell/non_presenting_gvr_delegate.h

Issue 2742083002: Revert of Re-land WebVR compositor bypass via BrowserMain context + mailbox (Closed)
Patch Set: 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 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 CHROME_BROWSER_ANDROID_VR_SHELL_NON_PRESENTING_GVR_DELEGATE_H_ 5 #ifndef CHROME_BROWSER_ANDROID_VR_SHELL_NON_PRESENTING_GVR_DELEGATE_H_
6 #define CHROME_BROWSER_ANDROID_VR_SHELL_NON_PRESENTING_GVR_DELEGATE_H_ 6 #define CHROME_BROWSER_ANDROID_VR_SHELL_NON_PRESENTING_GVR_DELEGATE_H_
7 7
8 #include <jni.h> 8 #include <jni.h>
9 9
10 #include <memory> 10 #include <memory>
(...skipping 10 matching lines...) Expand all
21 // A non presenting delegate for magic window mode. 21 // A non presenting delegate for magic window mode.
22 class NonPresentingGvrDelegate : public device::GvrDelegate, 22 class NonPresentingGvrDelegate : public device::GvrDelegate,
23 public device::mojom::VRVSyncProvider { 23 public device::mojom::VRVSyncProvider {
24 public: 24 public:
25 explicit NonPresentingGvrDelegate(gvr_context* context); 25 explicit NonPresentingGvrDelegate(gvr_context* context);
26 26
27 ~NonPresentingGvrDelegate() override; 27 ~NonPresentingGvrDelegate() override;
28 28
29 // GvrDelegate implementation 29 // GvrDelegate implementation
30 void SetWebVRSecureOrigin(bool secure_origin) override {} 30 void SetWebVRSecureOrigin(bool secure_origin) override {}
31 void SubmitWebVRFrame(int16_t frame_index, 31 void SubmitWebVRFrame() override {}
32 const gpu::MailboxHolder& mailbox) override {}
33 void UpdateWebVRTextureBounds(int16_t frame_index, 32 void UpdateWebVRTextureBounds(int16_t frame_index,
34 const gvr::Rectf& left_bounds, 33 const gvr::Rectf& left_bounds,
35 const gvr::Rectf& right_bounds, 34 const gvr::Rectf& right_bounds) override {}
36 const gvr::Sizei& source_size) override {}
37 void OnVRVsyncProviderRequest( 35 void OnVRVsyncProviderRequest(
38 device::mojom::VRVSyncProviderRequest request) override; 36 device::mojom::VRVSyncProviderRequest request) override;
39 void UpdateVSyncInterval(int64_t timebase_nanos, 37 void UpdateVSyncInterval(int64_t timebase_nanos,
40 double interval_seconds) override; 38 double interval_seconds) override;
41 bool SupportsPresentation() override; 39 bool SupportsPresentation() override;
42 void ResetPose() override; 40 void ResetPose() override;
43 void CreateVRDisplayInfo( 41 void CreateVRDisplayInfo(
44 const base::Callback<void(device::mojom::VRDisplayInfoPtr)>& callback, 42 const base::Callback<void(device::mojom::VRDisplayInfoPtr)>& callback,
45 uint32_t device_id) override; 43 uint32_t device_id) override;
46 44
(...skipping 23 matching lines...) Expand all
70 GetVSyncCallback callback_; 68 GetVSyncCallback callback_;
71 mojo::Binding<device::mojom::VRVSyncProvider> binding_; 69 mojo::Binding<device::mojom::VRVSyncProvider> binding_;
72 base::WeakPtrFactory<NonPresentingGvrDelegate> weak_ptr_factory_; 70 base::WeakPtrFactory<NonPresentingGvrDelegate> weak_ptr_factory_;
73 71
74 DISALLOW_COPY_AND_ASSIGN(NonPresentingGvrDelegate); 72 DISALLOW_COPY_AND_ASSIGN(NonPresentingGvrDelegate);
75 }; 73 };
76 74
77 } // namespace vr_shell 75 } // namespace vr_shell
78 76
79 #endif // CHROME_BROWSER_ANDROID_VR_SHELL_NON_PRESENTING_GVR_DELEGATE_H_ 77 #endif // CHROME_BROWSER_ANDROID_VR_SHELL_NON_PRESENTING_GVR_DELEGATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698