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

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

Issue 1340263003: Rename IdleCallbackDeadline to IdleDeadline to be in sync with spec. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 3 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 | « Source/core/dom/IdleDeadline.h ('k') | Source/core/dom/IdleDeadline.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/IdleDeadline.cpp
diff --git a/Source/core/dom/IdleCallbackDeadline.cpp b/Source/core/dom/IdleDeadline.cpp
similarity index 73%
rename from Source/core/dom/IdleCallbackDeadline.cpp
rename to Source/core/dom/IdleDeadline.cpp
index bd1ee9808c77a5fe0380b579c1a593176d74c022..ed7f04eb2d6dec18533ce8cd777009394d5044a9 100644
--- a/Source/core/dom/IdleCallbackDeadline.cpp
+++ b/Source/core/dom/IdleDeadline.cpp
@@ -3,19 +3,19 @@
// found in the LICENSE file.
#include "config.h"
-#include "core/dom/IdleCallbackDeadline.h"
+#include "core/dom/IdleDeadline.h"
#include "wtf/CurrentTime.h"
namespace blink {
-IdleCallbackDeadline::IdleCallbackDeadline(double deadlineSeconds, CallbackType callbackType)
+IdleDeadline::IdleDeadline(double deadlineSeconds, CallbackType callbackType)
: m_deadlineSeconds(deadlineSeconds)
, m_callbackType(callbackType)
{
}
-double IdleCallbackDeadline::timeRemaining() const
+double IdleDeadline::timeRemaining() const
{
double timeRemaining = m_deadlineSeconds - monotonicallyIncreasingTime();
if (timeRemaining < 0)
« no previous file with comments | « Source/core/dom/IdleDeadline.h ('k') | Source/core/dom/IdleDeadline.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698