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

Unified Diff: device/vr/vr_display_impl.cc

Issue 2488273002: Revert of mojo VR interface simplified (Closed)
Patch Set: Created 4 years, 1 month 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 | « device/vr/vr_display_impl.h ('k') | device/vr/vr_service.mojom » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/vr/vr_display_impl.cc
diff --git a/device/vr/vr_display_impl.cc b/device/vr/vr_display_impl.cc
deleted file mode 100644
index c074205324a54b1caac4cfe169283a4f61a772d8..0000000000000000000000000000000000000000
--- a/device/vr/vr_display_impl.cc
+++ /dev/null
@@ -1,49 +0,0 @@
-// Copyright 2016 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 <utility>
-
-#include "base/bind.h"
-#include "device/vr/vr_device.h"
-#include "device/vr/vr_service_impl.h"
-
-namespace device {
-
-VRDisplayImpl::VRDisplayImpl(device::VRDevice* device, VRServiceImpl* service)
- : binding_(this), device_(device), service_(service) {
- mojom::VRDisplayInfoPtr display_info = device->GetVRDevice();
- service->client()->OnDisplayConnected(binding_.CreateInterfacePtrAndBind(),
- mojo::GetProxy(&client_),
- std::move(display_info));
-}
-
-VRDisplayImpl::~VRDisplayImpl() {}
-
-void VRDisplayImpl::GetPose(const GetPoseCallback& callback) {
- callback.Run(device_->GetPose(service_.get()));
-}
-
-void VRDisplayImpl::ResetPose() {
- device_->ResetPose(service_.get());
-}
-
-void VRDisplayImpl::RequestPresent(bool secureOrigin,
- const RequestPresentCallback& callback) {
- callback.Run(device_->RequestPresent(service_.get(), secureOrigin));
-}
-
-void VRDisplayImpl::ExitPresent() {
- device_->ExitPresent(service_.get());
-}
-
-void VRDisplayImpl::SubmitFrame(mojom::VRPosePtr pose) {
- device_->SubmitFrame(service_.get(), std::move(pose));
-}
-
-void VRDisplayImpl::UpdateLayerBounds(mojom::VRLayerBoundsPtr leftBounds,
- mojom::VRLayerBoundsPtr rightBounds) {
- device_->UpdateLayerBounds(service_.get(), std::move(leftBounds),
- std::move(rightBounds));
-}
-}
« no previous file with comments | « device/vr/vr_display_impl.h ('k') | device/vr/vr_service.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698