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

Unified Diff: content/browser/vr/vr_service_impl.cc

Issue 829803003: Adding Chrome-side WebVR interface (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updated to use Mojo as requested by eng review Created 5 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: content/browser/vr/vr_service_impl.cc
diff --git a/content/browser/vr/vr_service_impl.cc b/content/browser/vr/vr_service_impl.cc
new file mode 100644
index 0000000000000000000000000000000000000000..183839043729943e88ca95baa243f7053b19bb1e
--- /dev/null
+++ b/content/browser/vr/vr_service_impl.cc
@@ -0,0 +1,54 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "content/browser/vr/vr_service_impl.h"
+
+#include "base/location.h"
+#include "content/browser/vr/vr_device_manager.h"
+
+namespace content {
+
+void VRServiceImpl::Create(mojo::InterfaceRequest<VRService> request) {
+ VRServiceImpl* service = new VRServiceImpl();
+ mojo::BindToRequest(service, &request);
+}
+
+VRServiceImpl::VRServiceImpl() : registered_with_device_manager_(false) {
+}
+
+VRServiceImpl::~VRServiceImpl() {
+ if (registered_with_device_manager_) {
+ VRDeviceManager::RemoveService(this);
+ }
+}
+
+VRDeviceManager* VRServiceImpl::GetDeviceManager() {
+ if (!registered_with_device_manager_) {
+ VRDeviceManager::AddService(this);
+ registered_with_device_manager_ = true;
+ }
+ return VRDeviceManager::GetInstance();
+}
+
+void VRServiceImpl::GetDevices(const GetDevicesCallback& callback) {
+ callback.Run(GetDeviceManager()->GetVRDevices());
+}
+
+void VRServiceImpl::GetSensorState(uint32_t index,
+ const GetSensorStateCallback& callback) {
+ VRDevice* device = GetDeviceManager()->GetDevice(index);
+ if (device) {
+ callback.Run(device->GetSensorState());
+ } else {
+ callback.Run(nullptr);
+ }
+}
+
+void VRServiceImpl::ResetSensor(uint32_t index) {
+ VRDevice* device = GetDeviceManager()->GetDevice(index);
+ if (device)
+ device->ResetSensor();
+}
+
+} // namespace content

Powered by Google App Engine
This is Rietveld 408576698