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

Side by Side Diff: third_party/WebKit/Source/modules/vr/VRController.cpp

Issue 2471393004: bindings: Use forward declarations for wrapper types in dictionary_impl (Closed)
Patch Set: Added copy operator 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 unified diff | Download patch
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 "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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 } 107 }
107 108
108 DEFINE_TRACE(VRController) { 109 DEFINE_TRACE(VRController) {
109 visitor->trace(m_navigatorVR); 110 visitor->trace(m_navigatorVR);
110 visitor->trace(m_displays); 111 visitor->trace(m_displays);
111 112
112 ContextLifecycleObserver::trace(visitor); 113 ContextLifecycleObserver::trace(visitor);
113 } 114 }
114 115
115 } // namespace blink 116 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698