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

Unified Diff: Source/core/dom/IdleCallbackDeadline.h

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/core.gypi ('k') | Source/core/dom/IdleCallbackDeadline.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/IdleCallbackDeadline.h
diff --git a/Source/core/dom/IdleCallbackDeadline.h b/Source/core/dom/IdleCallbackDeadline.h
deleted file mode 100644
index 349c3b2f5d815339fa8a7b6ac3e845c2003895ec..0000000000000000000000000000000000000000
--- a/Source/core/dom/IdleCallbackDeadline.h
+++ /dev/null
@@ -1,44 +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.
-
-#ifndef IdleCallbackDeadline_h
-#define IdleCallbackDeadline_h
-
-#include "bindings/core/v8/ScriptWrappable.h"
-#include "platform/heap/Handle.h"
-
-namespace blink {
-
-class IdleCallbackDeadline : public GarbageCollected<IdleCallbackDeadline>, public ScriptWrappable {
- DEFINE_WRAPPERTYPEINFO();
-public:
- enum class CallbackType {
- CalledWhenIdle,
- CalledByTimeout
- };
-
- static IdleCallbackDeadline* create(double deadlineSeconds, CallbackType callbackType)
- {
- return new IdleCallbackDeadline(deadlineSeconds, callbackType);
- }
-
- DEFINE_INLINE_TRACE() { }
-
- double timeRemaining() const;
-
- bool didTimeout() const
- {
- return m_callbackType == CallbackType::CalledByTimeout;
- }
-
-private:
- IdleCallbackDeadline(double deadlineSeconds, CallbackType);
-
- double m_deadlineSeconds;
- CallbackType m_callbackType;
-};
-
-} // namespace blink
-
-#endif // IdleCallbackDeadline_h
« no previous file with comments | « Source/core/core.gypi ('k') | Source/core/dom/IdleCallbackDeadline.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698