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 |