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

Unified Diff: third_party/WebKit/Source/modules/vr/VRDisplay.cpp

Issue 2578193004: Remove ActiveScriptWrappableBase::m_scriptWrappable (Closed)
Patch Set: temp Created 4 years 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/modules/vr/VRDisplay.cpp
diff --git a/third_party/WebKit/Source/modules/vr/VRDisplay.cpp b/third_party/WebKit/Source/modules/vr/VRDisplay.cpp
index 45980bb1910aeaabafc39351bf8c3bccac4ce90b..44ccd0df018303662d46cf6674c742b50ed68085 100644
--- a/third_party/WebKit/Source/modules/vr/VRDisplay.cpp
+++ b/third_party/WebKit/Source/modules/vr/VRDisplay.cpp
@@ -79,8 +79,7 @@ class VRDisplayFrameRequestCallback : public FrameRequestCallback {
VRDisplay::VRDisplay(NavigatorVR* navigatorVR,
device::mojom::blink::VRDisplayPtr display,
device::mojom::blink::VRDisplayClientRequest request)
- : ActiveScriptWrappable(this),
- ContextLifecycleObserver(navigatorVR->document()),
+ : ContextLifecycleObserver(navigatorVR->document()),
m_navigatorVR(navigatorVR),
m_isConnected(false),
m_isPresenting(false),
@@ -96,8 +95,7 @@ VRDisplay::VRDisplay(NavigatorVR* navigatorVR,
m_animationCallbackRequested(false),
m_inAnimationFrame(false),
m_display(std::move(display)),
- m_binding(this, std::move(request)) {
-}
+ m_binding(this, std::move(request)) {}
VRDisplay::~VRDisplay() {}

Powered by Google App Engine
This is Rietveld 408576698