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

Unified Diff: Source/core/dom/ScriptedAnimationController.cpp

Issue 484323002: Add logging for ScriptedAnimationController. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 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
« no previous file with comments | « no previous file | Source/platform/Logging.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/ScriptedAnimationController.cpp
diff --git a/Source/core/dom/ScriptedAnimationController.cpp b/Source/core/dom/ScriptedAnimationController.cpp
index 5abde6be642a62640408d100b5939c16d08cd66a..2784146b94bb6c1fbf66254c0e6d592d5bfea46c 100644
--- a/Source/core/dom/ScriptedAnimationController.cpp
+++ b/Source/core/dom/ScriptedAnimationController.cpp
@@ -35,6 +35,7 @@
#include "core/inspector/InspectorInstrumentation.h"
#include "core/inspector/InspectorTraceEvents.h"
#include "core/loader/DocumentLoader.h"
+#include "platform/Logging.h"
namespace blink {
@@ -67,6 +68,7 @@ void ScriptedAnimationController::trace(Visitor* visitor)
void ScriptedAnimationController::suspend()
{
++m_suspendCount;
+ WTF_LOG(ScriptedAnimationController, "suspend: count = %d", m_suspendCount);
}
void ScriptedAnimationController::resume()
@@ -75,12 +77,14 @@ void ScriptedAnimationController::resume()
// even when suspend hasn't (if a tab was created in the background).
if (m_suspendCount > 0)
--m_suspendCount;
+ WTF_LOG(ScriptedAnimationController, "resume: count = %d", m_suspendCount);
scheduleAnimationIfNeeded();
}
ScriptedAnimationController::CallbackId ScriptedAnimationController::registerCallback(PassOwnPtr<RequestAnimationFrameCallback> callback)
{
ScriptedAnimationController::CallbackId id = ++m_nextCallbackId;
+ WTF_LOG(ScriptedAnimationController, "registerCallback: id = %d", id);
callback->m_cancelled = false;
callback->m_id = id;
m_callbacks.append(callback);
@@ -96,6 +100,7 @@ ScriptedAnimationController::CallbackId ScriptedAnimationController::registerCal
void ScriptedAnimationController::cancelCallback(CallbackId id)
{
+ WTF_LOG(ScriptedAnimationController, "cancelCallback: id = %d", id);
for (size_t i = 0; i < m_callbacks.size(); ++i) {
if (m_callbacks[i]->m_id == id) {
TRACE_EVENT_INSTANT1(TRACE_DISABLED_BY_DEFAULT("devtools.timeline"), "CancelAnimationFrame", "data", InspectorAnimationFrameEvent::data(m_document, id));
@@ -184,6 +189,11 @@ void ScriptedAnimationController::callMediaQueryListListeners()
void ScriptedAnimationController::serviceScriptedAnimations(double monotonicTimeNow)
{
+ WTF_LOG(ScriptedAnimationController, "serviceScriptedAnimations: #callbacks = %d, #events = %d, #mediaQueryListListeners = %d, count = %d",
+ static_cast<int>(m_callbacks.size()),
+ static_cast<int>(m_eventQueue.size()),
+ static_cast<int>(m_mediaQueryListListeners.size()),
+ m_suspendCount);
if (!m_callbacks.size() && !m_eventQueue.size() && !m_mediaQueryListListeners.size())
return;
@@ -201,6 +211,7 @@ void ScriptedAnimationController::serviceScriptedAnimations(double monotonicTime
void ScriptedAnimationController::enqueueEvent(PassRefPtrWillBeRawPtr<Event> event)
{
+ WTF_LOG(ScriptedAnimationController, "enqueueEvent");
InspectorInstrumentation::didEnqueueEvent(event->target(), event.get());
m_eventQueue.append(event);
scheduleAnimationIfNeeded();
@@ -215,6 +226,7 @@ void ScriptedAnimationController::enqueuePerFrameEvent(PassRefPtrWillBeRawPtr<Ev
void ScriptedAnimationController::enqueueMediaQueryChangeListeners(WillBeHeapVector<RefPtrWillBeMember<MediaQueryListListener> >& listeners)
{
+ WTF_LOG(ScriptedAnimationController, "enqueueMediaQueryChangeListeners");
for (size_t i = 0; i < listeners.size(); ++i) {
m_mediaQueryListListeners.add(listeners[i]);
}
@@ -223,6 +235,12 @@ void ScriptedAnimationController::enqueueMediaQueryChangeListeners(WillBeHeapVec
void ScriptedAnimationController::scheduleAnimationIfNeeded()
{
+ WTF_LOG(ScriptedAnimationController, "scheduleAnimationIfNeeded: document = %d, count = %d, #callbacks = %d, #events = %d, #mediaQueryListListeners =%d, frameView = %d",
+ m_document ? 1 : 0, m_suspendCount,
+ static_cast<int>(m_callbacks.size()),
+ static_cast<int>(m_eventQueue.size()),
+ static_cast<int>(m_mediaQueryListListeners.size()),
+ m_document && m_document->view() ? 1 : 0);
if (!m_document)
return;
« no previous file with comments | « no previous file | Source/platform/Logging.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698