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

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

Issue 1119683003: Implement requestIdleCallback API (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased 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
« no previous file with comments | « Source/core/dom/IdleCallbackDeadline.idl ('k') | Source/core/dom/IdleRequestCallback.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/IdleRequestCallback.h
diff --git a/Source/core/dom/IdleRequestCallback.h b/Source/core/dom/IdleRequestCallback.h
new file mode 100644
index 0000000000000000000000000000000000000000..49c94c3cc804d71910583df05fa8dbf65a11e5db
--- /dev/null
+++ b/Source/core/dom/IdleRequestCallback.h
@@ -0,0 +1,25 @@
+// 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 IdleRequestCallback_h
+#define IdleRequestCallback_h
+
+#include "core/dom/ScriptedIdleTaskController.h"
+#include "platform/Timer.h"
+#include "platform/heap/Handle.h"
+
+namespace blink {
+
+class IdleCallbackDeadline;
+
+class IdleRequestCallback : public GarbageCollectedFinalized<IdleRequestCallback> {
+public:
+ DEFINE_INLINE_VIRTUAL_TRACE() {}
+ virtual ~IdleRequestCallback() {}
+
+ virtual void handleEvent(IdleCallbackDeadline*) = 0;
+};
+}
+
+#endif // IdleRequestCallback_h
« no previous file with comments | « Source/core/dom/IdleCallbackDeadline.idl ('k') | Source/core/dom/IdleRequestCallback.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698