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

Side by Side Diff: Source/core/inspector/InspectorDOMDebuggerAgent.h

Issue 1327713002: DevTools: move didFireTimer and didHandleEvent to DOMDebugger (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
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 unified diff | Download patch
« no previous file with comments | « no previous file | Source/core/inspector/InspectorDOMDebuggerAgent.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 void didInvalidateStyleAttr(Node*); 79 void didInvalidateStyleAttr(Node*);
80 void didInsertDOMNode(Node*); 80 void didInsertDOMNode(Node*);
81 void willRemoveDOMNode(Node*); 81 void willRemoveDOMNode(Node*);
82 void didRemoveDOMNode(Node*); 82 void didRemoveDOMNode(Node*);
83 void willModifyDOMAttr(Element*, const AtomicString&, const AtomicString&); 83 void willModifyDOMAttr(Element*, const AtomicString&, const AtomicString&);
84 void willSetInnerHTML(); 84 void willSetInnerHTML();
85 void willSendXMLHttpRequest(const String& url); 85 void willSendXMLHttpRequest(const String& url);
86 void didInstallTimer(ExecutionContext*, int timerId, int timeout, bool singl eShot); 86 void didInstallTimer(ExecutionContext*, int timerId, int timeout, bool singl eShot);
87 void didRemoveTimer(ExecutionContext*, int timerId); 87 void didRemoveTimer(ExecutionContext*, int timerId);
88 void willFireTimer(ExecutionContext*, int timerId); 88 void willFireTimer(ExecutionContext*, int timerId);
89 void didFireTimer();
89 void didRequestAnimationFrame(ExecutionContext*, int callbackId); 90 void didRequestAnimationFrame(ExecutionContext*, int callbackId);
90 void didCancelAnimationFrame(ExecutionContext*, int callbackId); 91 void didCancelAnimationFrame(ExecutionContext*, int callbackId);
91 void willFireAnimationFrame(ExecutionContext*, int callbackId); 92 void willFireAnimationFrame(ExecutionContext*, int callbackId);
92 void willHandleEvent(EventTarget*, Event*, EventListener*, bool useCapture); 93 void willHandleEvent(EventTarget*, Event*, EventListener*, bool useCapture);
94 void didHandleEvent();
93 void willEvaluateScript(); 95 void willEvaluateScript();
94 void didFireWebGLError(const String& errorName); 96 void didFireWebGLError(const String& errorName);
95 void didFireWebGLWarning(); 97 void didFireWebGLWarning();
96 void didFireWebGLErrorOrWarning(const String& message); 98 void didFireWebGLErrorOrWarning(const String& message);
97 void willCloseWindow(); 99 void willCloseWindow();
98 100
99 void disable(ErrorString*) override; 101 void disable(ErrorString*) override;
100 void restore() override; 102 void restore() override;
101 103
102 private: 104 private:
(...skipping 18 matching lines...) Expand all
121 RawPtrWillBeMember<InjectedScriptManager> m_injectedScriptManager; 123 RawPtrWillBeMember<InjectedScriptManager> m_injectedScriptManager;
122 RawPtrWillBeMember<InspectorDOMAgent> m_domAgent; 124 RawPtrWillBeMember<InspectorDOMAgent> m_domAgent;
123 RawPtrWillBeMember<V8DebuggerAgent> m_debuggerAgent; 125 RawPtrWillBeMember<V8DebuggerAgent> m_debuggerAgent;
124 WillBeHeapHashMap<RawPtrWillBeMember<Node>, uint32_t> m_domBreakpoints; 126 WillBeHeapHashMap<RawPtrWillBeMember<Node>, uint32_t> m_domBreakpoints;
125 }; 127 };
126 128
127 } // namespace blink 129 } // namespace blink
128 130
129 131
130 #endif // !defined(InspectorDOMDebuggerAgent_h) 132 #endif // !defined(InspectorDOMDebuggerAgent_h)
OLDNEW
« no previous file with comments | « no previous file | Source/core/inspector/InspectorDOMDebuggerAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698