| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2009 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2011 Google Inc. All rights reserved. | 3 * Copyright (C) 2011 Google Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * | 8 * |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 class InspectorHistory; | 63 class InspectorHistory; |
| 64 class Node; | 64 class Node; |
| 65 class QualifiedName; | 65 class QualifiedName; |
| 66 class PseudoElement; | 66 class PseudoElement; |
| 67 class PlatformGestureEvent; | 67 class PlatformGestureEvent; |
| 68 class PlatformMouseEvent; | 68 class PlatformMouseEvent; |
| 69 class PlatformTouchEvent; | 69 class PlatformTouchEvent; |
| 70 class InspectorRevalidateDOMTask; | 70 class InspectorRevalidateDOMTask; |
| 71 class ShadowRoot; | 71 class ShadowRoot; |
| 72 | 72 |
| 73 class CORE_EXPORT InspectorDOMAgent final : public InspectorBaseAgent<InspectorD
OMAgent, protocol::DOM::Frontend>, public protocol::DOM::Backend { | 73 class CORE_EXPORT InspectorDOMAgent final : public InspectorBaseAgent<protocol::
DOM::Metainfo> { |
| 74 WTF_MAKE_NONCOPYABLE(InspectorDOMAgent); | 74 WTF_MAKE_NONCOPYABLE(InspectorDOMAgent); |
| 75 public: | 75 public: |
| 76 struct CORE_EXPORT DOMListener : public GarbageCollectedMixin { | 76 struct CORE_EXPORT DOMListener : public GarbageCollectedMixin { |
| 77 virtual ~DOMListener() | 77 virtual ~DOMListener() |
| 78 { | 78 { |
| 79 } | 79 } |
| 80 virtual void didRemoveDocument(Document*) = 0; | 80 virtual void didRemoveDocument(Document*) = 0; |
| 81 virtual void didRemoveDOMNode(Node*) = 0; | 81 virtual void didRemoveDOMNode(Node*) = 0; |
| 82 virtual void didModifyDOMAttr(Element*) = 0; | 82 virtual void didModifyDOMAttr(Element*) = 0; |
| 83 }; | 83 }; |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 255 Member<InspectorHistory> m_history; | 255 Member<InspectorHistory> m_history; |
| 256 Member<DOMEditor> m_domEditor; | 256 Member<DOMEditor> m_domEditor; |
| 257 bool m_suppressAttributeModifiedEvent; | 257 bool m_suppressAttributeModifiedEvent; |
| 258 int m_backendNodeIdToInspect; | 258 int m_backendNodeIdToInspect; |
| 259 }; | 259 }; |
| 260 | 260 |
| 261 | 261 |
| 262 } // namespace blink | 262 } // namespace blink |
| 263 | 263 |
| 264 #endif // !defined(InspectorDOMAgent_h) | 264 #endif // !defined(InspectorDOMAgent_h) |
| OLD | NEW |