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

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

Issue 1043903003: rAF: Introduce FrameRequestCallbackCollection for managing rAF callbacks. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: . Created 5 years, 9 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/Document.h
diff --git a/Source/core/dom/Document.h b/Source/core/dom/Document.h
index 4a62c60ea786afdab9071e907be2d700ad34d7eb..f00cb4d3dbe38567ff315e0d19e1fa732c50afd0 100644
--- a/Source/core/dom/Document.h
+++ b/Source/core/dom/Document.h
@@ -105,6 +105,7 @@ class FloatRect;
class FormController;
class Frame;
class FrameHost;
+class FrameRequestCallback;
class FrameView;
class HTMLAllCollection;
class HTMLCanvasElement;
@@ -134,7 +135,6 @@ class ProcessingInstruction;
class QualifiedName;
class Range;
class LayoutView;
-class RequestAnimationFrameCallback;
class ResourceFetcher;
class SVGDocumentExtensions;
class SVGUseElement;
@@ -949,7 +949,7 @@ public:
const DocumentTiming& timing() const { return m_documentTiming; }
- int requestAnimationFrame(RequestAnimationFrameCallback*);
+ int requestAnimationFrame(FrameRequestCallback*);
void cancelAnimationFrame(int id);
void serviceScriptedAnimations(double monotonicAnimationStartTime);

Powered by Google App Engine
This is Rietveld 408576698