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

Unified Diff: sky/engine/core/frame/DOMTimer.cpp

Issue 922893002: Merge the Sky Engine changes from the SkyDart branch (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 10 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 | « sky/engine/core/frame/DOMTimer.h ('k') | sky/engine/core/frame/DOMWindowBase64.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/core/frame/DOMTimer.cpp
diff --git a/sky/engine/core/frame/DOMTimer.cpp b/sky/engine/core/frame/DOMTimer.cpp
index c5dc0bcde940aaebad54aebd746fbf29fcf22140..6feef188c064fc128d0ceb0a0fb3fceed5c0f56d 100644
--- a/sky/engine/core/frame/DOMTimer.cpp
+++ b/sky/engine/core/frame/DOMTimer.cpp
@@ -114,7 +114,7 @@ void DOMTimer::fired()
WTF_LOG(Timers, "DOMTimer::fired: m_timeoutID = %d, repeatInterval = %f, m_action = %p", m_timeoutID, repeatInterval(), m_action.get());
// No access to member variables after this point, it can delete the timer.
- m_action->execute(context);
+ m_action->Execute(context);
return;
}
@@ -126,7 +126,7 @@ void DOMTimer::fired()
// This timer is being deleted; no access to member variables allowed after this point.
context->removeTimeoutByID(m_timeoutID);
- action->execute(context);
+ action->Execute(context);
timerNestingLevel = 0;
}
« no previous file with comments | « sky/engine/core/frame/DOMTimer.h ('k') | sky/engine/core/frame/DOMWindowBase64.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698