| 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 23 matching lines...) Expand all Loading... |
| 34 | 34 |
| 35 #include "core/inspector/InspectorBaseAgent.h" | 35 #include "core/inspector/InspectorBaseAgent.h" |
| 36 #include "core/inspector/InspectorDOMAgent.h" | 36 #include "core/inspector/InspectorDOMAgent.h" |
| 37 #include "core/inspector/InspectorDebuggerAgent.h" | 37 #include "core/inspector/InspectorDebuggerAgent.h" |
| 38 #include "wtf/HashMap.h" | 38 #include "wtf/HashMap.h" |
| 39 #include "wtf/PassOwnPtr.h" | 39 #include "wtf/PassOwnPtr.h" |
| 40 #include "wtf/text/WTFString.h" | 40 #include "wtf/text/WTFString.h" |
| 41 | 41 |
| 42 namespace blink { | 42 namespace blink { |
| 43 | 43 |
| 44 class Document; | |
| 45 class Element; | 44 class Element; |
| 46 class Event; | 45 class Event; |
| 47 class EventListener; | 46 class EventListener; |
| 48 class EventTarget; | 47 class EventTarget; |
| 49 class InspectorDOMAgent; | 48 class InspectorDOMAgent; |
| 50 class InspectorDebuggerAgent; | 49 class InspectorDebuggerAgent; |
| 51 class JSONObject; | 50 class JSONObject; |
| 52 class LocalFrame; | 51 class LocalFrame; |
| 53 class Node; | 52 class Node; |
| 54 | 53 |
| (...skipping 26 matching lines...) Expand all Loading... |
| 81 void didInvalidateStyleAttr(Node*); | 80 void didInvalidateStyleAttr(Node*); |
| 82 void didInsertDOMNode(Node*); | 81 void didInsertDOMNode(Node*); |
| 83 void willRemoveDOMNode(Node*); | 82 void willRemoveDOMNode(Node*); |
| 84 void didRemoveDOMNode(Node*); | 83 void didRemoveDOMNode(Node*); |
| 85 void willModifyDOMAttr(Element*, const AtomicString&, const AtomicString&); | 84 void willModifyDOMAttr(Element*, const AtomicString&, const AtomicString&); |
| 86 void willSetInnerHTML(); | 85 void willSetInnerHTML(); |
| 87 void willSendXMLHttpRequest(const String& url); | 86 void willSendXMLHttpRequest(const String& url); |
| 88 void didInstallTimer(ExecutionContext*, int timerId, int timeout, bool singl
eShot); | 87 void didInstallTimer(ExecutionContext*, int timerId, int timeout, bool singl
eShot); |
| 89 void didRemoveTimer(ExecutionContext*, int timerId); | 88 void didRemoveTimer(ExecutionContext*, int timerId); |
| 90 void willFireTimer(ExecutionContext*, int timerId); | 89 void willFireTimer(ExecutionContext*, int timerId); |
| 91 void didRequestAnimationFrame(Document*, int callbackId); | 90 void didRequestAnimationFrame(ExecutionContext*, int callbackId); |
| 92 void didCancelAnimationFrame(Document*, int callbackId); | 91 void didCancelAnimationFrame(ExecutionContext*, int callbackId); |
| 93 void willFireAnimationFrame(Document*, int callbackId); | 92 void willFireAnimationFrame(ExecutionContext*, int callbackId); |
| 94 void willHandleEvent(EventTarget*, Event*, EventListener*, bool useCapture); | 93 void willHandleEvent(EventTarget*, Event*, EventListener*, bool useCapture); |
| 95 void willEvaluateScript(LocalFrame*, const String& url, int lineNumber); | 94 void willEvaluateScript(LocalFrame*, const String& url, int lineNumber); |
| 96 void didFireWebGLError(const String& errorName); | 95 void didFireWebGLError(const String& errorName); |
| 97 void didFireWebGLWarning(); | 96 void didFireWebGLWarning(); |
| 98 void didFireWebGLErrorOrWarning(const String& message); | 97 void didFireWebGLErrorOrWarning(const String& message); |
| 99 void willCloseWindow(); | 98 void willCloseWindow(); |
| 100 | 99 |
| 101 void disable(ErrorString*) override; | 100 void disable(ErrorString*) override; |
| 102 void discardAgent() override; | 101 void discardAgent() override; |
| 103 | 102 |
| (...skipping 25 matching lines...) Expand all Loading... |
| 129 | 128 |
| 130 RawPtrWillBeMember<InspectorDOMAgent> m_domAgent; | 129 RawPtrWillBeMember<InspectorDOMAgent> m_domAgent; |
| 131 RawPtrWillBeMember<InspectorDebuggerAgent> m_debuggerAgent; | 130 RawPtrWillBeMember<InspectorDebuggerAgent> m_debuggerAgent; |
| 132 WillBeHeapHashMap<RawPtrWillBeMember<Node>, uint32_t> m_domBreakpoints; | 131 WillBeHeapHashMap<RawPtrWillBeMember<Node>, uint32_t> m_domBreakpoints; |
| 133 }; | 132 }; |
| 134 | 133 |
| 135 } // namespace blink | 134 } // namespace blink |
| 136 | 135 |
| 137 | 136 |
| 138 #endif // !defined(InspectorDOMDebuggerAgent_h) | 137 #endif // !defined(InspectorDOMDebuggerAgent_h) |
| OLD | NEW |