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

Unified Diff: content/renderer/vr/vr_dispatcher.cc

Issue 1808203005: [OnionSoup] Moving VR service from content to Blink (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase to ToT! Created 4 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
« no previous file with comments | « content/renderer/vr/vr_dispatcher.h ('k') | content/renderer/vr/vr_type_converters.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/vr/vr_dispatcher.cc
diff --git a/content/renderer/vr/vr_dispatcher.cc b/content/renderer/vr/vr_dispatcher.cc
deleted file mode 100644
index acd893747f3d9e1965d2e2affc68a38b6eef907b..0000000000000000000000000000000000000000
--- a/content/renderer/vr/vr_dispatcher.cc
+++ /dev/null
@@ -1,72 +0,0 @@
-// 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/renderer/vr/vr_dispatcher.h"
-
-#include <stddef.h>
-
-#include "content/public/common/service_registry.h"
-#include "content/renderer/vr/vr_type_converters.h"
-
-namespace content {
-
-VRDispatcher::VRDispatcher(ServiceRegistry* service_registry)
- : service_registry_(service_registry) {
-}
-
-VRDispatcher::~VRDispatcher() {
-}
-
-mojom::VRServicePtr& VRDispatcher::GetVRServicePtr() {
- if (!vr_service_) {
- service_registry_->ConnectToRemoteService(mojo::GetProxy(&vr_service_));
- }
- return vr_service_;
-}
-
-void VRDispatcher::getDevices(blink::WebVRGetDevicesCallback* callback) {
- int request_id = pending_requests_.Add(callback);
- GetVRServicePtr()->GetDevices(base::Bind(&VRDispatcher::OnGetDevices,
- base::Unretained(this), request_id));
-}
-
-void VRDispatcher::getSensorState(unsigned int index,
- blink::WebHMDSensorState& state) {
- GetVRServicePtr()->GetSensorState(
- index,
- base::Bind(&VRDispatcher::OnGetSensorState, base::Unretained(&state)));
-
- // This call needs to return results synchronously in order to be useful and
- // provide the lowest latency results possible.
- GetVRServicePtr().WaitForIncomingResponse();
-}
-
-void VRDispatcher::resetSensor(unsigned int index) {
- GetVRServicePtr()->ResetSensor(index);
-}
-
-void VRDispatcher::OnGetDevices(
- int request_id,
- const mojo::Array<mojom::VRDeviceInfoPtr>& devices) {
- blink::WebVector<blink::WebVRDevice> web_devices(devices.size());
-
- blink::WebVRGetDevicesCallback* callback =
- pending_requests_.Lookup(request_id);
- if (!callback)
- return;
-
- for (size_t i = 0; i < devices.size(); ++i) {
- web_devices[i] = devices[i].To<blink::WebVRDevice>();
- }
-
- callback->onSuccess(web_devices);
- pending_requests_.Remove(request_id);
-}
-
-void VRDispatcher::OnGetSensorState(blink::WebHMDSensorState* state,
- const mojom::VRSensorStatePtr& mojo_state) {
- *state = mojo_state.To<blink::WebHMDSensorState>();
-}
-
-} // namespace content
« no previous file with comments | « content/renderer/vr/vr_dispatcher.h ('k') | content/renderer/vr/vr_type_converters.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698