| 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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 class Node; | 70 class Node; |
| 71 class RevalidateStyleAttributeTask; | 71 class RevalidateStyleAttributeTask; |
| 72 class ScriptValue; | 72 class ScriptValue; |
| 73 class ShadowRoot; | 73 class ShadowRoot; |
| 74 | 74 |
| 75 struct HighlightConfig; | 75 struct HighlightConfig; |
| 76 | 76 |
| 77 typedef String ErrorString; | 77 typedef String ErrorString; |
| 78 typedef int BackendNodeId; | 78 typedef int BackendNodeId; |
| 79 | 79 |
| 80 #if ENABLE(INSPECTOR) | |
| 81 | 80 |
| 82 struct EventListenerInfo { | 81 struct EventListenerInfo { |
| 83 EventListenerInfo(Node* node, const AtomicString& eventType, const EventList
enerVector& eventListenerVector) | 82 EventListenerInfo(Node* node, const AtomicString& eventType, const EventList
enerVector& eventListenerVector) |
| 84 : node(node) | 83 : node(node) |
| 85 , eventType(eventType) | 84 , eventType(eventType) |
| 86 , eventListenerVector(eventListenerVector) | 85 , eventListenerVector(eventListenerVector) |
| 87 { | 86 { |
| 88 } | 87 } |
| 89 | 88 |
| 90 Node* node; | 89 Node* node; |
| (...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 265 SearchResults m_searchResults; | 264 SearchResults m_searchResults; |
| 266 OwnPtr<RevalidateStyleAttributeTask> m_revalidateStyleAttrTask; | 265 OwnPtr<RevalidateStyleAttributeTask> m_revalidateStyleAttrTask; |
| 267 RefPtr<Node> m_nodeToFocus; | 266 RefPtr<Node> m_nodeToFocus; |
| 268 bool m_searchingForNode; | 267 bool m_searchingForNode; |
| 269 OwnPtr<HighlightConfig> m_inspectModeHighlightConfig; | 268 OwnPtr<HighlightConfig> m_inspectModeHighlightConfig; |
| 270 OwnPtr<InspectorHistory> m_history; | 269 OwnPtr<InspectorHistory> m_history; |
| 271 OwnPtr<DOMEditor> m_domEditor; | 270 OwnPtr<DOMEditor> m_domEditor; |
| 272 bool m_suppressAttributeModifiedEvent; | 271 bool m_suppressAttributeModifiedEvent; |
| 273 }; | 272 }; |
| 274 | 273 |
| 275 #endif // ENABLE(INSPECTOR) | |
| 276 | 274 |
| 277 } // namespace WebCore | 275 } // namespace WebCore |
| 278 | 276 |
| 279 #endif // !defined(InspectorDOMAgent_h) | 277 #endif // !defined(InspectorDOMAgent_h) |
| OLD | NEW |