| 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 "core/dom/DOMException.h" | 8 #include "core/dom/DOMException.h" |
| 8 #include "core/dom/Document.h" | 9 #include "core/dom/Document.h" |
| 9 #include "core/frame/LocalFrame.h" | 10 #include "core/frame/LocalFrame.h" |
| 10 #include "modules/vr/NavigatorVR.h" | 11 #include "modules/vr/NavigatorVR.h" |
| 11 #include "modules/vr/VRGetDevicesCallback.h" | 12 #include "modules/vr/VRGetDevicesCallback.h" |
| 12 #include "public/platform/InterfaceProvider.h" | 13 #include "public/platform/InterfaceProvider.h" |
| 13 | 14 |
| 14 #include "wtf/Assertions.h" | 15 #include "wtf/Assertions.h" |
| 15 | 16 |
| 16 namespace blink { | 17 namespace blink { |
| (...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 } | 217 } |
| 217 | 218 |
| 218 DEFINE_TRACE(VRController) { | 219 DEFINE_TRACE(VRController) { |
| 219 visitor->trace(m_navigatorVR); | 220 visitor->trace(m_navigatorVR); |
| 220 visitor->trace(m_displays); | 221 visitor->trace(m_displays); |
| 221 | 222 |
| 222 ContextLifecycleObserver::trace(visitor); | 223 ContextLifecycleObserver::trace(visitor); |
| 223 } | 224 } |
| 224 | 225 |
| 225 } // namespace blink | 226 } // namespace blink |
| OLD | NEW |