| 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 "config.h" | 5 #include "config.h" |
| 6 #include "modules/vr/VRHardwareUnitCollection.h" | 6 #include "modules/vr/VRHardwareUnitCollection.h" |
| 7 | 7 |
| 8 #include "bindings/core/v8/ScriptPromiseResolver.h" | 8 #include "bindings/core/v8/ScriptPromiseResolver.h" |
| 9 #include "core/dom/DOMException.h" | |
| 10 #include "core/dom/Document.h" | 9 #include "core/dom/Document.h" |
| 11 #include "core/dom/ExceptionCode.h" | 10 #include "core/dom/ExceptionCode.h" |
| 12 #include "core/frame/LocalDOMWindow.h" | 11 #include "core/frame/LocalDOMWindow.h" |
| 13 #include "core/frame/LocalFrame.h" | 12 #include "core/frame/LocalFrame.h" |
| 14 #include "core/frame/Navigator.h" | 13 #include "core/frame/Navigator.h" |
| 15 #include "core/page/Page.h" | 14 #include "core/page/Page.h" |
| 16 #include "modules/vr/HMDVRDevice.h" | 15 #include "modules/vr/HMDVRDevice.h" |
| 17 #include "modules/vr/NavigatorVRDevice.h" | 16 #include "modules/vr/NavigatorVRDevice.h" |
| 18 #include "modules/vr/PositionSensorVRDevice.h" | 17 #include "modules/vr/PositionSensorVRDevice.h" |
| 19 #include "modules/vr/VRController.h" | 18 #include "modules/vr/VRController.h" |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 return 0; | 63 return 0; |
| 65 } | 64 } |
| 66 | 65 |
| 67 DEFINE_TRACE(VRHardwareUnitCollection) | 66 DEFINE_TRACE(VRHardwareUnitCollection) |
| 68 { | 67 { |
| 69 visitor->trace(m_controller); | 68 visitor->trace(m_controller); |
| 70 visitor->trace(m_hardwareUnits); | 69 visitor->trace(m_hardwareUnits); |
| 71 } | 70 } |
| 72 | 71 |
| 73 } // namespace blink | 72 } // namespace blink |
| OLD | NEW |