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

Unified Diff: Source/core/dom/IdleCallbackDeadline.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/IdleCallbackDeadline.h ('k') | Source/core/dom/IdleCallbackDeadline.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/IdleCallbackDeadline.cpp
diff --git a/Source/core/dom/IdleCallbackDeadline.cpp b/Source/core/dom/IdleCallbackDeadline.cpp
deleted file mode 100644
index bd1ee9808c77a5fe0380b579c1a593176d74c022..0000000000000000000000000000000000000000
--- a/Source/core/dom/IdleCallbackDeadline.cpp
+++ /dev/null
@@ -1,27 +0,0 @@
-// Copyright 2015 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "config.h"
-#include "core/dom/IdleCallbackDeadline.h"
-
-#include "wtf/CurrentTime.h"
-
-namespace blink {
-
-IdleCallbackDeadline::IdleCallbackDeadline(double deadlineSeconds, CallbackType callbackType)
- : m_deadlineSeconds(deadlineSeconds)
- , m_callbackType(callbackType)
-{
-}
-
-double IdleCallbackDeadline::timeRemaining() const
-{
- double timeRemaining = m_deadlineSeconds - monotonicallyIncreasingTime();
- if (timeRemaining < 0)
- timeRemaining = 0;
-
- return timeRemaining * 1000;
-}
-
-} // namespace blink
« no previous file with comments | « Source/core/dom/IdleCallbackDeadline.h ('k') | Source/core/dom/IdleCallbackDeadline.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698