| 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 12 matching lines...) Expand all Loading... |
| 23 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | 23 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 24 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | 24 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
| 25 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 25 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 28 */ | 28 */ |
| 29 | 29 |
| 30 #ifndef InspectorDOMAgent_h | 30 #ifndef InspectorDOMAgent_h |
| 31 #define InspectorDOMAgent_h | 31 #define InspectorDOMAgent_h |
| 32 | 32 |
| 33 #include "EventTarget.h" | |
| 34 #include "InjectedScript.h" | 33 #include "InjectedScript.h" |
| 35 #include "InjectedScriptManager.h" | 34 #include "InjectedScriptManager.h" |
| 36 #include "InspectorBaseAgent.h" | 35 #include "InspectorBaseAgent.h" |
| 37 #include "InspectorFrontend.h" | 36 #include "InspectorFrontend.h" |
| 38 #include "InspectorOverlay.h" | 37 #include "InspectorOverlay.h" |
| 39 #include "InspectorValues.h" | 38 #include "InspectorValues.h" |
| 39 #include "core/dom/EventTarget.h" |
| 40 #include "core/platform/Timer.h" | 40 #include "core/platform/Timer.h" |
| 41 #include "core/rendering/RenderLayer.h" | 41 #include "core/rendering/RenderLayer.h" |
| 42 | 42 |
| 43 #include <wtf/Deque.h> | 43 #include <wtf/Deque.h> |
| 44 #include <wtf/HashMap.h> | 44 #include <wtf/HashMap.h> |
| 45 #include <wtf/HashSet.h> | 45 #include <wtf/HashSet.h> |
| 46 #include <wtf/ListHashSet.h> | 46 #include <wtf/ListHashSet.h> |
| 47 #include <wtf/OwnPtr.h> | 47 #include <wtf/OwnPtr.h> |
| 48 #include <wtf/PassOwnPtr.h> | 48 #include <wtf/PassOwnPtr.h> |
| 49 #include <wtf/RefPtr.h> | 49 #include <wtf/RefPtr.h> |
| (...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 267 OwnPtr<HighlightConfig> m_inspectModeHighlightConfig; | 267 OwnPtr<HighlightConfig> m_inspectModeHighlightConfig; |
| 268 OwnPtr<InspectorHistory> m_history; | 268 OwnPtr<InspectorHistory> m_history; |
| 269 OwnPtr<DOMEditor> m_domEditor; | 269 OwnPtr<DOMEditor> m_domEditor; |
| 270 bool m_suppressAttributeModifiedEvent; | 270 bool m_suppressAttributeModifiedEvent; |
| 271 }; | 271 }; |
| 272 | 272 |
| 273 | 273 |
| 274 } // namespace WebCore | 274 } // namespace WebCore |
| 275 | 275 |
| 276 #endif // !defined(InspectorDOMAgent_h) | 276 #endif // !defined(InspectorDOMAgent_h) |
| OLD | NEW |