| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 | 42 |
| 43 namespace blink { | 43 namespace blink { |
| 44 | 44 |
| 45 class Element; | 45 class Element; |
| 46 class InspectorDOMAgent; | 46 class InspectorDOMAgent; |
| 47 class Node; | 47 class Node; |
| 48 | 48 |
| 49 namespace probe { | 49 namespace probe { |
| 50 class ExecuteScript; | 50 class ExecuteScript; |
| 51 class UserCallback; | 51 class UserCallback; |
| 52 } | 52 } // namespace probe |
| 53 | 53 |
| 54 namespace protocol { | 54 namespace protocol { |
| 55 class DictionaryValue; | 55 class DictionaryValue; |
| 56 } | 56 } |
| 57 | 57 |
| 58 class CORE_EXPORT InspectorDOMDebuggerAgent final | 58 class CORE_EXPORT InspectorDOMDebuggerAgent final |
| 59 : public InspectorBaseAgent<protocol::DOMDebugger::Metainfo> { | 59 : public InspectorBaseAgent<protocol::DOMDebugger::Metainfo> { |
| 60 WTF_MAKE_NONCOPYABLE(InspectorDOMDebuggerAgent); | 60 WTF_MAKE_NONCOPYABLE(InspectorDOMDebuggerAgent); |
| 61 | 61 |
| 62 public: | 62 public: |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 | 157 |
| 158 v8::Isolate* isolate_; | 158 v8::Isolate* isolate_; |
| 159 Member<InspectorDOMAgent> dom_agent_; | 159 Member<InspectorDOMAgent> dom_agent_; |
| 160 v8_inspector::V8InspectorSession* v8_session_; | 160 v8_inspector::V8InspectorSession* v8_session_; |
| 161 HeapHashMap<Member<Node>, uint32_t> dom_breakpoints_; | 161 HeapHashMap<Member<Node>, uint32_t> dom_breakpoints_; |
| 162 }; | 162 }; |
| 163 | 163 |
| 164 } // namespace blink | 164 } // namespace blink |
| 165 | 165 |
| 166 #endif // !defined(InspectorDOMDebuggerAgent_h) | 166 #endif // !defined(InspectorDOMDebuggerAgent_h) |
| OLD | NEW |