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

Unified Diff: Source/core/inspector/InspectorDOMDebuggerAgent.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
« no previous file with comments | « Source/core/frame/Window.idl ('k') | Source/core/inspector/InspectorDOMDebuggerAgent.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/InspectorDOMDebuggerAgent.h
diff --git a/Source/core/inspector/InspectorDOMDebuggerAgent.h b/Source/core/inspector/InspectorDOMDebuggerAgent.h
index abb82483324faad3b351548f5674def1acfe7934..4638127f06320a96b80bb5942fa7ae568c2e8e14 100644
--- a/Source/core/inspector/InspectorDOMDebuggerAgent.h
+++ b/Source/core/inspector/InspectorDOMDebuggerAgent.h
@@ -41,7 +41,6 @@
namespace blink {
-class Document;
class Element;
class Event;
class EventListener;
@@ -88,9 +87,9 @@ public:
void didInstallTimer(ExecutionContext*, int timerId, int timeout, bool singleShot);
void didRemoveTimer(ExecutionContext*, int timerId);
void willFireTimer(ExecutionContext*, int timerId);
- void didRequestAnimationFrame(Document*, int callbackId);
- void didCancelAnimationFrame(Document*, int callbackId);
- void willFireAnimationFrame(Document*, int callbackId);
+ void didRequestAnimationFrame(ExecutionContext*, int callbackId);
+ void didCancelAnimationFrame(ExecutionContext*, int callbackId);
+ void willFireAnimationFrame(ExecutionContext*, int callbackId);
void willHandleEvent(EventTarget*, Event*, EventListener*, bool useCapture);
void willEvaluateScript(LocalFrame*, const String& url, int lineNumber);
void didFireWebGLError(const String& errorName);
« no previous file with comments | « Source/core/frame/Window.idl ('k') | Source/core/inspector/InspectorDOMDebuggerAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698