| 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 class EventTarget; | 48 class EventTarget; |
| 49 class InspectorDOMAgent; | 49 class InspectorDOMAgent; |
| 50 class InspectorDebuggerAgent; | 50 class InspectorDebuggerAgent; |
| 51 class InspectorFrontend; | 51 class InspectorFrontend; |
| 52 class InstrumentingAgents; | 52 class InstrumentingAgents; |
| 53 class JSONObject; | 53 class JSONObject; |
| 54 class Node; | 54 class Node; |
| 55 | 55 |
| 56 typedef String ErrorString; | 56 typedef String ErrorString; |
| 57 | 57 |
| 58 class InspectorDOMDebuggerAgent FINAL : | 58 class InspectorDOMDebuggerAgent FINAL |
| 59 public InspectorBaseAgent<InspectorDOMDebuggerAgent>, | 59 : public InspectorBaseAgent<InspectorDOMDebuggerAgent> |
| 60 public InspectorDebuggerAgent::Listener, | 60 , public InspectorDebuggerAgent::Listener |
| 61 public InspectorDOMAgent::Listener, | 61 , public InspectorDOMAgent::Listener |
| 62 public InspectorBackendDispatcher::DOMDebuggerCommandHandler { | 62 , public InspectorBackendDispatcher::DOMDebuggerCommandHandler { |
| 63 WTF_MAKE_NONCOPYABLE(InspectorDOMDebuggerAgent); | 63 WTF_MAKE_NONCOPYABLE(InspectorDOMDebuggerAgent); |
| 64 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(InspectorDOMDebuggerAgent); | 64 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(InspectorDOMDebuggerAgent); |
| 65 public: | 65 public: |
| 66 static PassOwnPtrWillBeRawPtr<InspectorDOMDebuggerAgent> create(InspectorDOM
Agent*, InspectorDebuggerAgent*); | 66 static PassOwnPtrWillBeRawPtr<InspectorDOMDebuggerAgent> create(InspectorDOM
Agent*, InspectorDebuggerAgent*); |
| 67 | 67 |
| 68 virtual ~InspectorDOMDebuggerAgent(); | 68 virtual ~InspectorDOMDebuggerAgent(); |
| 69 virtual void trace(Visitor*) OVERRIDE; | 69 virtual void trace(Visitor*) OVERRIDE; |
| 70 | 70 |
| 71 // DOMDebugger API for InspectorFrontend | 71 // DOMDebugger API for InspectorFrontend |
| 72 virtual void setXHRBreakpoint(ErrorString*, const String& url) OVERRIDE; | 72 virtual void setXHRBreakpoint(ErrorString*, const String& url) OVERRIDE; |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 RawPtrWillBeMember<InspectorDOMAgent> m_domAgent; | 131 RawPtrWillBeMember<InspectorDOMAgent> m_domAgent; |
| 132 RawPtrWillBeMember<InspectorDebuggerAgent> m_debuggerAgent; | 132 RawPtrWillBeMember<InspectorDebuggerAgent> m_debuggerAgent; |
| 133 WillBeHeapHashMap<RawPtrWillBeMember<Node>, uint32_t> m_domBreakpoints; | 133 WillBeHeapHashMap<RawPtrWillBeMember<Node>, uint32_t> m_domBreakpoints; |
| 134 bool m_pauseInNextEventListener; | 134 bool m_pauseInNextEventListener; |
| 135 }; | 135 }; |
| 136 | 136 |
| 137 } // namespace blink | 137 } // namespace blink |
| 138 | 138 |
| 139 | 139 |
| 140 #endif // !defined(InspectorDOMDebuggerAgent_h) | 140 #endif // !defined(InspectorDOMDebuggerAgent_h) |
| OLD | NEW |