| 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 20 matching lines...) Expand all Loading... |
| 31 #define InspectorDOMAgent_h | 31 #define InspectorDOMAgent_h |
| 32 | 32 |
| 33 #include "EventTarget.h" | 33 #include "EventTarget.h" |
| 34 #include "InjectedScript.h" | 34 #include "InjectedScript.h" |
| 35 #include "InjectedScriptManager.h" | 35 #include "InjectedScriptManager.h" |
| 36 #include "InspectorBaseAgent.h" | 36 #include "InspectorBaseAgent.h" |
| 37 #include "InspectorFrontend.h" | 37 #include "InspectorFrontend.h" |
| 38 #include "InspectorOverlay.h" | 38 #include "InspectorOverlay.h" |
| 39 #include "InspectorValues.h" | 39 #include "InspectorValues.h" |
| 40 #include "RenderLayer.h" | 40 #include "RenderLayer.h" |
| 41 #include "Timer.h" | 41 #include "core/platform/Timer.h" |
| 42 | 42 |
| 43 #include <wtf/Deque.h> | 43 #include <wtf/Deque.h> |
| 44 #include <wtf/ListHashSet.h> | |
| 45 #include <wtf/HashMap.h> | 44 #include <wtf/HashMap.h> |
| 46 #include <wtf/HashSet.h> | 45 #include <wtf/HashSet.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> |
| 50 #include <wtf/text/AtomicString.h> |
| 50 #include <wtf/Vector.h> | 51 #include <wtf/Vector.h> |
| 51 #include <wtf/text/AtomicString.h> | |
| 52 | 52 |
| 53 namespace WebCore { | 53 namespace WebCore { |
| 54 class ContainerNode; | 54 class ContainerNode; |
| 55 class CharacterData; | 55 class CharacterData; |
| 56 class DOMEditor; | 56 class DOMEditor; |
| 57 class Document; | 57 class Document; |
| 58 class Element; | 58 class Element; |
| 59 class Event; | 59 class Event; |
| 60 class InspectorClient; | 60 class InspectorClient; |
| 61 class InspectorFrontend; | 61 class InspectorFrontend; |
| (...skipping 205 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 |