| 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 #include <memory> | 45 #include <memory> |
| 46 #include <v8-inspector.h> | 46 #include <v8-inspector.h> |
| 47 | 47 |
| 48 namespace blink { | 48 namespace blink { |
| 49 | 49 |
| 50 class CharacterData; | 50 class CharacterData; |
| 51 class DOMEditor; | 51 class DOMEditor; |
| 52 class Document; | 52 class Document; |
| 53 class DocumentLoader; | 53 class DocumentLoader; |
| 54 class Element; | 54 class Element; |
| 55 class EventTarget; | |
| 56 class ExceptionState; | 55 class ExceptionState; |
| 57 class FloatQuad; | 56 class FloatQuad; |
| 58 class HTMLSlotElement; | 57 class HTMLSlotElement; |
| 59 class InsertionPoint; | 58 class InsertionPoint; |
| 60 class InspectedFrames; | 59 class InspectedFrames; |
| 61 class InspectorHistory; | 60 class InspectorHistory; |
| 62 class Node; | 61 class Node; |
| 63 class QualifiedName; | 62 class QualifiedName; |
| 64 class PseudoElement; | 63 class PseudoElement; |
| 65 class PlatformGestureEvent; | |
| 66 class PlatformMouseEvent; | |
| 67 class PlatformTouchEvent; | |
| 68 class InspectorRevalidateDOMTask; | 64 class InspectorRevalidateDOMTask; |
| 69 class ShadowRoot; | 65 class ShadowRoot; |
| 70 | 66 |
| 71 class CORE_EXPORT InspectorDOMAgent final | 67 class CORE_EXPORT InspectorDOMAgent final |
| 72 : public InspectorBaseAgent<protocol::DOM::Metainfo> { | 68 : public InspectorBaseAgent<protocol::DOM::Metainfo> { |
| 73 WTF_MAKE_NONCOPYABLE(InspectorDOMAgent); | 69 WTF_MAKE_NONCOPYABLE(InspectorDOMAgent); |
| 74 | 70 |
| 75 public: | 71 public: |
| 76 struct CORE_EXPORT DOMListener : public GarbageCollectedMixin { | 72 struct CORE_EXPORT DOMListener : public GarbageCollectedMixin { |
| 77 virtual ~DOMListener() {} | 73 virtual ~DOMListener() {} |
| (...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 379 Member<InspectorRevalidateDOMTask> m_revalidateTask; | 375 Member<InspectorRevalidateDOMTask> m_revalidateTask; |
| 380 Member<InspectorHistory> m_history; | 376 Member<InspectorHistory> m_history; |
| 381 Member<DOMEditor> m_domEditor; | 377 Member<DOMEditor> m_domEditor; |
| 382 bool m_suppressAttributeModifiedEvent; | 378 bool m_suppressAttributeModifiedEvent; |
| 383 int m_backendNodeIdToInspect; | 379 int m_backendNodeIdToInspect; |
| 384 }; | 380 }; |
| 385 | 381 |
| 386 } // namespace blink | 382 } // namespace blink |
| 387 | 383 |
| 388 #endif // !defined(InspectorDOMAgent_h) | 384 #endif // !defined(InspectorDOMAgent_h) |
| OLD | NEW |