| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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) |
| OLD | NEW |