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

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

Issue 1119683003: Implement requestIdleCallback API (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Address Review Comments Created 5 years, 4 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
Index: Source/core/dom/IdleCallbackDeadline.h
diff --git a/Source/core/dom/IdleCallbackDeadline.h b/Source/core/dom/IdleCallbackDeadline.h
new file mode 100644
index 0000000000000000000000000000000000000000..644245402db965770f38131251a30c637cad285a
--- /dev/null
+++ b/Source/core/dom/IdleCallbackDeadline.h
@@ -0,0 +1,51 @@
+// 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 DocumentLoadTiming;
+
+class IdleCallbackDeadline : public GarbageCollected<IdleCallbackDeadline>, public ScriptWrappable {
+ DEFINE_WRAPPERTYPEINFO();
+
+public:
+ enum CallbackType {
Sami 2015/08/11 18:03:00 nit: enum class?
rmcilroy 2015/08/12 14:17:30 Done.
+ CalledWhenIdle,
+ CalledByTimeout
+ };
+
+ DEFINE_INLINE_TRACE() {}
+ static IdleCallbackDeadline* create(double deadline, CallbackType callbackType, const DocumentLoadTiming& timing)
Sami 2015/08/11 18:03:00 nit: deadlineMillis (here and below)
rmcilroy 2015/08/12 14:17:30 Done.
+ {
+ return new IdleCallbackDeadline(deadline, callbackType, timing);
+ }
+
+ double deadline() const
+ {
+ return m_deadline;
+ }
+
+ bool didTimeout() const
+ {
+ return m_callbackType == CalledByTimeout;
+ }
+
+ bool isExceeded() const;
+
+private:
+ IdleCallbackDeadline(double deadline, CallbackType, const DocumentLoadTiming&);
+
+ double m_deadline;
+ CallbackType m_callbackType;
+ const DocumentLoadTiming& m_timing;
+};
+}
+
+#endif // IdleCallbackDeadline_h

Powered by Google App Engine
This is Rietveld 408576698