| 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 30 matching lines...) Expand all Loading... |
| 41 | 41 |
| 42 namespace blink { | 42 namespace blink { |
| 43 | 43 |
| 44 class Document; | 44 class Document; |
| 45 class Element; | 45 class Element; |
| 46 class Event; | 46 class Event; |
| 47 class EventListener; | 47 class EventListener; |
| 48 class EventTarget; | 48 class EventTarget; |
| 49 class InspectorDOMAgent; | 49 class InspectorDOMAgent; |
| 50 class InspectorDebuggerAgent; | 50 class InspectorDebuggerAgent; |
| 51 class InspectorFrontend; | |
| 52 class InstrumentingAgents; | |
| 53 class JSONObject; | 51 class JSONObject; |
| 54 class Node; | 52 class Node; |
| 55 | 53 |
| 56 typedef String ErrorString; | 54 typedef String ErrorString; |
| 57 | 55 |
| 58 class InspectorDOMDebuggerAgent final | 56 class InspectorDOMDebuggerAgent final |
| 59 : public InspectorBaseAgent<InspectorDOMDebuggerAgent> | 57 : public InspectorBaseAgent<InspectorDOMDebuggerAgent> |
| 60 , public InspectorDebuggerAgent::Listener | 58 , public InspectorDebuggerAgent::Listener |
| 61 , public InspectorDOMAgent::Listener | 59 , public InspectorDOMAgent::Listener |
| 62 , public InspectorBackendDispatcher::DOMDebuggerCommandHandler { | 60 , public InspectorBackendDispatcher::DOMDebuggerCommandHandler { |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 RawPtrWillBeMember<InspectorDOMAgent> m_domAgent; | 133 RawPtrWillBeMember<InspectorDOMAgent> m_domAgent; |
| 136 RawPtrWillBeMember<InspectorDebuggerAgent> m_debuggerAgent; | 134 RawPtrWillBeMember<InspectorDebuggerAgent> m_debuggerAgent; |
| 137 WillBeHeapHashMap<RawPtrWillBeMember<Node>, uint32_t> m_domBreakpoints; | 135 WillBeHeapHashMap<RawPtrWillBeMember<Node>, uint32_t> m_domBreakpoints; |
| 138 bool m_pauseInNextEventListener; | 136 bool m_pauseInNextEventListener; |
| 139 }; | 137 }; |
| 140 | 138 |
| 141 } // namespace blink | 139 } // namespace blink |
| 142 | 140 |
| 143 | 141 |
| 144 #endif // !defined(InspectorDOMDebuggerAgent_h) | 142 #endif // !defined(InspectorDOMDebuggerAgent_h) |
| OLD | NEW |