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

Side by Side Diff: Source/modules/vr/VRHardwareUnitCollection.cpp

Issue 1107793002: Oilpan: have DOMException be on the heap by default. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 8 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/modules/vr/NavigatorVRDevice.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « Source/modules/vr/NavigatorVRDevice.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698