| 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 26 matching lines...) Expand all Loading... |
| 37 #include "core/inspector/InspectorDOMAgent.h" | 37 #include "core/inspector/InspectorDOMAgent.h" |
| 38 #include "core/inspector/protocol/DOMDebugger.h" | 38 #include "core/inspector/protocol/DOMDebugger.h" |
| 39 #include "wtf/HashMap.h" | 39 #include "wtf/HashMap.h" |
| 40 #include "wtf/text/WTFString.h" | 40 #include "wtf/text/WTFString.h" |
| 41 | 41 |
| 42 #include <v8-inspector.h> | 42 #include <v8-inspector.h> |
| 43 | 43 |
| 44 namespace blink { | 44 namespace blink { |
| 45 | 45 |
| 46 class Element; | 46 class Element; |
| 47 class Event; | |
| 48 class InspectorDOMAgent; | 47 class InspectorDOMAgent; |
| 49 class Node; | 48 class Node; |
| 50 | 49 |
| 51 namespace protocol { | 50 namespace protocol { |
| 52 class DictionaryValue; | 51 class DictionaryValue; |
| 53 } | 52 } |
| 54 | 53 |
| 55 class CORE_EXPORT InspectorDOMDebuggerAgent final | 54 class CORE_EXPORT InspectorDOMDebuggerAgent final |
| 56 : public InspectorBaseAgent<protocol::DOMDebugger::Metainfo> { | 55 : public InspectorBaseAgent<protocol::DOMDebugger::Metainfo> { |
| 57 WTF_MAKE_NONCOPYABLE(InspectorDOMDebuggerAgent); | 56 WTF_MAKE_NONCOPYABLE(InspectorDOMDebuggerAgent); |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 | 131 |
| 133 v8::Isolate* m_isolate; | 132 v8::Isolate* m_isolate; |
| 134 Member<InspectorDOMAgent> m_domAgent; | 133 Member<InspectorDOMAgent> m_domAgent; |
| 135 v8_inspector::V8InspectorSession* m_v8Session; | 134 v8_inspector::V8InspectorSession* m_v8Session; |
| 136 HeapHashMap<Member<Node>, uint32_t> m_domBreakpoints; | 135 HeapHashMap<Member<Node>, uint32_t> m_domBreakpoints; |
| 137 }; | 136 }; |
| 138 | 137 |
| 139 } // namespace blink | 138 } // namespace blink |
| 140 | 139 |
| 141 #endif // !defined(InspectorDOMDebuggerAgent_h) | 140 #endif // !defined(InspectorDOMDebuggerAgent_h) |
| OLD | NEW |