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

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

Issue 2398103002: Enable magic window mode with new Gvr (Closed)
Patch Set: reviews Created 4 years, 2 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_provider.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_PROVIDER_H 5 #ifndef DEVICE_VR_ANDROID_GVR_DEVICE_PROVIDER_H
6 #define DEVICE_VR_ANDROID_GVR_DEVICE_PROVIDER_H 6 #define DEVICE_VR_ANDROID_GVR_DEVICE_PROVIDER_H
7 7
8 #include <memory> 8 #include <memory>
9 9
10 #include "base/macros.h" 10 #include "base/macros.h"
11 #include "base/single_thread_task_runner.h" 11 #include "base/single_thread_task_runner.h"
12 #include "device/vr/vr_client_dispatcher.h" 12 #include "device/vr/vr_client_dispatcher.h"
13 #include "device/vr/vr_device.h" 13 #include "device/vr/vr_device.h"
14 #include "device/vr/vr_device_provider.h" 14 #include "device/vr/vr_device_provider.h"
15 #include "device/vr/vr_export.h" 15 #include "device/vr/vr_export.h"
16 16
17 namespace device { 17 namespace device {
18 18
19 class GvrDelegate; 19 class GvrDelegate;
20 class GvrDevice; 20 class GvrDevice;
21 class GvrNonPresentingDelegate;
22 21
23 class DEVICE_VR_EXPORT GvrDeviceProvider : public VRDeviceProvider { 22 class DEVICE_VR_EXPORT GvrDeviceProvider : public VRDeviceProvider {
24 public: 23 public:
25 GvrDeviceProvider(); 24 GvrDeviceProvider();
26 ~GvrDeviceProvider() override; 25 ~GvrDeviceProvider() override;
27 26
28 void GetDevices(std::vector<VRDevice*>* devices) override; 27 void GetDevices(std::vector<VRDevice*>* devices) override;
29 void Initialize() override; 28 void Initialize() override;
30 29
31 // Called from GvrDevice 30 // Called from GvrDevice
(...skipping 14 matching lines...) Expand all
46 std::unique_ptr<GvrDevice> vr_device_; 45 std::unique_ptr<GvrDevice> vr_device_;
47 46
48 scoped_refptr<base::SingleThreadTaskRunner> main_thread_task_runner_; 47 scoped_refptr<base::SingleThreadTaskRunner> main_thread_task_runner_;
49 48
50 DISALLOW_COPY_AND_ASSIGN(GvrDeviceProvider); 49 DISALLOW_COPY_AND_ASSIGN(GvrDeviceProvider);
51 }; 50 };
52 51
53 } // namespace device 52 } // namespace device
54 53
55 #endif // DEVICE_VR_ANDROID_GVR_DEVICE_PROVIDER_H 54 #endif // DEVICE_VR_ANDROID_GVR_DEVICE_PROVIDER_H
OLDNEW
« no previous file with comments | « device/vr/android/gvr/gvr_delegate.h ('k') | device/vr/android/gvr/gvr_device_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698