| 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 17 matching lines...) Expand all Loading... |
| 28 */ | 28 */ |
| 29 | 29 |
| 30 #ifndef InspectorDOMAgent_h | 30 #ifndef InspectorDOMAgent_h |
| 31 #define InspectorDOMAgent_h | 31 #define InspectorDOMAgent_h |
| 32 | 32 |
| 33 #include "core/InspectorFrontend.h" | 33 #include "core/InspectorFrontend.h" |
| 34 #include "core/events/EventListenerMap.h" | 34 #include "core/events/EventListenerMap.h" |
| 35 #include "core/inspector/InjectedScript.h" | 35 #include "core/inspector/InjectedScript.h" |
| 36 #include "core/inspector/InjectedScriptManager.h" | 36 #include "core/inspector/InjectedScriptManager.h" |
| 37 #include "core/inspector/InspectorBaseAgent.h" | 37 #include "core/inspector/InspectorBaseAgent.h" |
| 38 #include "core/layout/style/LayoutStyleConstants.h" | 38 #include "core/layout/style/ComputedStyleConstants.h" |
| 39 #include "platform/JSONValues.h" | 39 #include "platform/JSONValues.h" |
| 40 | 40 |
| 41 #include "wtf/HashMap.h" | 41 #include "wtf/HashMap.h" |
| 42 #include "wtf/HashSet.h" | 42 #include "wtf/HashSet.h" |
| 43 #include "wtf/OwnPtr.h" | 43 #include "wtf/OwnPtr.h" |
| 44 #include "wtf/PassOwnPtr.h" | 44 #include "wtf/PassOwnPtr.h" |
| 45 #include "wtf/RefPtr.h" | 45 #include "wtf/RefPtr.h" |
| 46 #include "wtf/Vector.h" | 46 #include "wtf/Vector.h" |
| 47 #include "wtf/text/AtomicString.h" | 47 #include "wtf/text/AtomicString.h" |
| 48 | 48 |
| (...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 285 OwnPtrWillBeMember<DOMEditor> m_domEditor; | 285 OwnPtrWillBeMember<DOMEditor> m_domEditor; |
| 286 bool m_suppressAttributeModifiedEvent; | 286 bool m_suppressAttributeModifiedEvent; |
| 287 RawPtrWillBeMember<Listener> m_listener; | 287 RawPtrWillBeMember<Listener> m_listener; |
| 288 int m_backendNodeIdToInspect; | 288 int m_backendNodeIdToInspect; |
| 289 }; | 289 }; |
| 290 | 290 |
| 291 | 291 |
| 292 } // namespace blink | 292 } // namespace blink |
| 293 | 293 |
| 294 #endif // !defined(InspectorDOMAgent_h) | 294 #endif // !defined(InspectorDOMAgent_h) |
| OLD | NEW |