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

Side by Side Diff: device/vr/vr_device_manager.h

Issue 2041003003: Moved vr_service.mojom from blink to device (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed missing mojo dependency in gyp builds Created 4 years, 6 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/vr_device.h ('k') | device/vr/vr_device_manager.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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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_VR_DEVICE_MANAGER_H 5 #ifndef DEVICE_VR_VR_DEVICE_MANAGER_H
6 #define DEVICE_VR_VR_DEVICE_MANAGER_H 6 #define DEVICE_VR_VR_DEVICE_MANAGER_H
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <map> 10 #include <map>
11 #include <memory> 11 #include <memory>
12 #include <vector> 12 #include <vector>
13 13
14 #include "base/macros.h" 14 #include "base/macros.h"
15 #include "base/memory/linked_ptr.h" 15 #include "base/memory/linked_ptr.h"
16 #include "base/threading/thread_checker.h" 16 #include "base/threading/thread_checker.h"
17 #include "device/vr/vr_device.h" 17 #include "device/vr/vr_device.h"
18 #include "device/vr/vr_device_provider.h" 18 #include "device/vr/vr_device_provider.h"
19 #include "device/vr/vr_export.h" 19 #include "device/vr/vr_export.h"
20 #include "device/vr/vr_service.mojom.h"
20 #include "mojo/public/cpp/bindings/binding_set.h" 21 #include "mojo/public/cpp/bindings/binding_set.h"
21 #include "third_party/WebKit/public/platform/modules/vr/vr_service.mojom.h"
22 22
23 namespace device { 23 namespace device {
24 24
25 class VRDeviceManager : public blink::mojom::VRService { 25 class VRDeviceManager : public VRService {
26 public: 26 public:
27 DEVICE_VR_EXPORT ~VRDeviceManager() override; 27 DEVICE_VR_EXPORT ~VRDeviceManager() override;
28 28
29 DEVICE_VR_EXPORT static void BindRequest( 29 DEVICE_VR_EXPORT static void BindRequest(
30 mojo::InterfaceRequest<blink::mojom::VRService> request); 30 mojo::InterfaceRequest<VRService> request);
31 31
32 // Returns the VRDeviceManager singleton. 32 // Returns the VRDeviceManager singleton.
33 static VRDeviceManager* GetInstance(); 33 static VRDeviceManager* GetInstance();
34 34
35 DEVICE_VR_EXPORT mojo::Array<blink::mojom::VRDisplayPtr> GetVRDevices(); 35 DEVICE_VR_EXPORT mojo::Array<VRDisplayPtr> GetVRDevices();
36 DEVICE_VR_EXPORT VRDevice* GetDevice(unsigned int index); 36 DEVICE_VR_EXPORT VRDevice* GetDevice(unsigned int index);
37 37
38 private: 38 private:
39 friend class VRDeviceManagerTest; 39 friend class VRDeviceManagerTest;
40 40
41 VRDeviceManager(); 41 VRDeviceManager();
42 // Constructor for testing. 42 // Constructor for testing.
43 DEVICE_VR_EXPORT explicit VRDeviceManager( 43 DEVICE_VR_EXPORT explicit VRDeviceManager(
44 std::unique_ptr<VRDeviceProvider> provider); 44 std::unique_ptr<VRDeviceProvider> provider);
45 45
(...skipping 13 matching lines...) Expand all
59 59
60 using ProviderList = std::vector<linked_ptr<VRDeviceProvider>>; 60 using ProviderList = std::vector<linked_ptr<VRDeviceProvider>>;
61 ProviderList providers_; 61 ProviderList providers_;
62 62
63 // Devices are owned by their providers. 63 // Devices are owned by their providers.
64 using DeviceMap = std::map<unsigned int, VRDevice*>; 64 using DeviceMap = std::map<unsigned int, VRDevice*>;
65 DeviceMap devices_; 65 DeviceMap devices_;
66 66
67 bool vr_initialized_; 67 bool vr_initialized_;
68 68
69 mojo::BindingSet<blink::mojom::VRService> bindings_; 69 mojo::BindingSet<VRService> bindings_;
70 70
71 // For testing. If true will not delete self when consumer count reaches 0. 71 // For testing. If true will not delete self when consumer count reaches 0.
72 bool keep_alive_; 72 bool keep_alive_;
73 73
74 base::ThreadChecker thread_checker_; 74 base::ThreadChecker thread_checker_;
75 75
76 DISALLOW_COPY_AND_ASSIGN(VRDeviceManager); 76 DISALLOW_COPY_AND_ASSIGN(VRDeviceManager);
77 }; 77 };
78 78
79 } // namespace content 79 } // namespace content
80 80
81 #endif // CONTENT_BROWSER_VR_VR_DEVICE_MANAGER_H 81 #endif // CONTENT_BROWSER_VR_VR_DEVICE_MANAGER_H
OLDNEW
« no previous file with comments | « device/vr/vr_device.h ('k') | device/vr/vr_device_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698