Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 #include "modules/vr/VRController.h" | 5 #include "modules/vr/VRController.h" |
| 6 | 6 |
| 7 #include "bindings/core/v8/ScriptPromiseResolver.h" | 7 #include "bindings/core/v8/ScriptPromiseResolver.h" |
| 8 #include "core/dom/DOMException.h" | 8 #include "core/dom/DOMException.h" |
| 9 #include "core/dom/Document.h" | 9 #include "core/dom/Document.h" |
| 10 #include "core/frame/LocalFrame.h" | 10 #include "core/frame/LocalFrame.h" |
| 11 #include "modules/vr/NavigatorVR.h" | 11 #include "modules/vr/NavigatorVR.h" |
| 12 #include "modules/vr/VRGetDevicesCallback.h" | 12 #include "modules/vr/VRGetDevicesCallback.h" |
| 13 #include "public/platform/InterfaceProvider.h" | 13 #include "platform/ServiceConnector.h" |
| 14 #include "services/device/public/interfaces/constants.mojom-blink.h" | |
| 14 | 15 |
| 15 #include "wtf/Assertions.h" | 16 #include "wtf/Assertions.h" |
| 16 | 17 |
| 17 namespace blink { | 18 namespace blink { |
| 18 | 19 |
| 19 VRController::VRController(NavigatorVR* navigatorVR) | 20 VRController::VRController(NavigatorVR* navigatorVR) |
| 20 : ContextLifecycleObserver(navigatorVR->document()), | 21 : ContextLifecycleObserver(navigatorVR->document()), |
| 21 m_navigatorVR(navigatorVR), | 22 m_navigatorVR(navigatorVR), |
| 22 m_displaySynced(false), | 23 m_displaySynced(false), |
| 23 m_binding(this) { | 24 m_binding(this) { |
| 24 navigatorVR->document()->frame()->interfaceProvider()->getInterface( | 25 ServiceConnector::instance().connectToInterface( |
| 25 mojo::MakeRequest(&m_service)); | 26 device::mojom::blink::kServiceName, mojo::MakeRequest(&m_service)); |
| 26 m_service.set_connection_error_handler(convertToBaseCallback( | |
|
ke.he
2017/04/17 05:38:44
del this by mistake.
| |
| 27 WTF::bind(&VRController::dispose, wrapWeakPersistent(this)))); | |
| 28 m_service->SetClient( | 27 m_service->SetClient( |
| 29 m_binding.CreateInterfacePtrAndBind(), | 28 m_binding.CreateInterfacePtrAndBind(), |
| 30 convertToBaseCallback( | 29 convertToBaseCallback( |
| 31 WTF::bind(&VRController::onDisplaysSynced, wrapPersistent(this)))); | 30 WTF::bind(&VRController::onDisplaysSynced, wrapPersistent(this)))); |
| 32 } | 31 } |
| 33 | 32 |
| 34 VRController::~VRController() {} | 33 VRController::~VRController() {} |
| 35 | 34 |
| 36 void VRController::getDisplays(ScriptPromiseResolver* resolver) { | 35 void VRController::getDisplays(ScriptPromiseResolver* resolver) { |
| 37 // If we've previously synced the VRDisplays or no longer have a valid service | 36 // If we've previously synced the VRDisplays or no longer have a valid service |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 111 } | 110 } |
| 112 | 111 |
| 113 DEFINE_TRACE(VRController) { | 112 DEFINE_TRACE(VRController) { |
| 114 visitor->trace(m_navigatorVR); | 113 visitor->trace(m_navigatorVR); |
| 115 visitor->trace(m_displays); | 114 visitor->trace(m_displays); |
| 116 | 115 |
| 117 ContextLifecycleObserver::trace(visitor); | 116 ContextLifecycleObserver::trace(visitor); |
| 118 } | 117 } |
| 119 | 118 |
| 120 } // namespace blink | 119 } // namespace blink |
| OLD | NEW |