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

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

Issue 2584343002: WIP: working copy-no-compositor path
Patch Set: StatTracker destructor, delete old magic numbers, mojo export Created 3 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/modules/vr/VRController.cpp
diff --git a/third_party/WebKit/Source/modules/vr/VRController.cpp b/third_party/WebKit/Source/modules/vr/VRController.cpp
index 52a020797bd6e61201aa725781c1f57808606a7f..190ce2158dc135c91af8be561123a5d784c620b9 100644
--- a/third_party/WebKit/Source/modules/vr/VRController.cpp
+++ b/third_party/WebKit/Source/modules/vr/VRController.cpp
@@ -27,9 +27,12 @@ VRController::VRController(NavigatorVR* navigatorVR)
m_binding.CreateInterfacePtrAndBind(),
convertToBaseCallback(
WTF::bind(&VRController::onDisplaysSynced, wrapPersistent(this))));
+ VLOG(1) << __FUNCTION__ << ": CONSTRUCTOR this=" << (void*)this << " ***********************************************************************************************************";
}
-VRController::~VRController() {}
+VRController::~VRController() {
+ VLOG(1) << __FUNCTION__ << ": CONSTRUCTOR this=" << (void*)this << " ***********************************************************************************************************";
+}
void VRController::getDisplays(ScriptPromiseResolver* resolver) {
if (!m_service) {
@@ -52,6 +55,7 @@ void VRController::getDisplays(ScriptPromiseResolver* resolver) {
}
void VRController::setListeningForActivate(bool listening) {
+ VLOG(1) << __FUNCTION__ << ": listening=" << listening << " m_service=" << m_service;
if (m_service)
m_service->SetListeningForActivate(listening);
}

Powered by Google App Engine
This is Rietveld 408576698