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

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

Issue 2538053003: Implement vrdisplayactivate for GVR DON. (Closed)
Patch Set: Created 4 years 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_VR_SHELL_DELEGATE_H_ 5 #ifndef CHROME_BROWSER_ANDROID_VR_SHELL_VR_SHELL_DELEGATE_H_
6 #define CHROME_BROWSER_ANDROID_VR_SHELL_VR_SHELL_DELEGATE_H_ 6 #define CHROME_BROWSER_ANDROID_VR_SHELL_VR_SHELL_DELEGATE_H_
7 7
8 #include <jni.h> 8 #include <jni.h>
9 9
10 #include "base/android/jni_weak_ref.h" 10 #include "base/android/jni_weak_ref.h"
(...skipping 11 matching lines...) Expand all
22 class VrShellDelegate : public device::GvrDelegateProvider { 22 class VrShellDelegate : public device::GvrDelegateProvider {
23 public: 23 public:
24 VrShellDelegate(JNIEnv* env, jobject obj); 24 VrShellDelegate(JNIEnv* env, jobject obj);
25 virtual ~VrShellDelegate(); 25 virtual ~VrShellDelegate();
26 26
27 static VrShellDelegate* GetNativeDelegate(JNIEnv* env, jobject jdelegate); 27 static VrShellDelegate* GetNativeDelegate(JNIEnv* env, jobject jdelegate);
28 28
29 base::WeakPtr<device::GvrDeviceProvider> GetDeviceProvider(); 29 base::WeakPtr<device::GvrDeviceProvider> GetDeviceProvider();
30 30
31 void SetPresentResult(JNIEnv* env, jobject obj, jboolean result); 31 void SetPresentResult(JNIEnv* env, jobject obj, jboolean result);
32 void DisplayActivate(JNIEnv* env, jobject obj);
32 33
33 // device::GvrDelegateProvider implementation 34 // device::GvrDelegateProvider implementation
34 void RequestWebVRPresent( 35 void SetDeviceProvider(
35 base::WeakPtr<device::GvrDeviceProvider> device_provider, 36 base::WeakPtr<device::GvrDeviceProvider> device_provider) override;
36 const base::Callback<void(bool)>& callback) override; 37 void RequestWebVRPresent(const base::Callback<void(bool)>& callback) override;
37 void ExitWebVRPresent() override; 38 void ExitWebVRPresent() override;
38 base::WeakPtr<device::GvrDelegate> GetNonPresentingDelegate() override; 39 base::WeakPtr<device::GvrDelegate> GetNonPresentingDelegate() override;
39 void DestroyNonPresentingDelegate() override; 40 void DestroyNonPresentingDelegate() override;
40 void SetListeningForActivate(bool listening) override; 41 void SetListeningForActivate(bool listening) override;
41 42
42 private: 43 private:
43 std::unique_ptr<device::GvrDelegate> non_presenting_delegate_; 44 std::unique_ptr<device::GvrDelegate> non_presenting_delegate_;
44 base::android::ScopedJavaGlobalRef<jobject> j_vr_shell_delegate_; 45 base::android::ScopedJavaGlobalRef<jobject> j_vr_shell_delegate_;
45 base::WeakPtr<device::GvrDeviceProvider> device_provider_; 46 base::WeakPtr<device::GvrDeviceProvider> device_provider_;
46 base::Callback<void(bool)> present_callback_; 47 base::Callback<void(bool)> present_callback_;
47 48
48 DISALLOW_COPY_AND_ASSIGN(VrShellDelegate); 49 DISALLOW_COPY_AND_ASSIGN(VrShellDelegate);
49 }; 50 };
50 51
51 bool RegisterVrShellDelegate(JNIEnv* env); 52 bool RegisterVrShellDelegate(JNIEnv* env);
52 53
53 } // namespace vr_shell 54 } // namespace vr_shell
54 55
55 #endif // CHROME_BROWSER_ANDROID_VR_SHELL_VR_SHELL_DELEGATE_H_ 56 #endif // CHROME_BROWSER_ANDROID_VR_SHELL_VR_SHELL_DELEGATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698