| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #ifndef InspectorResourceAgent_h | 31 #ifndef InspectorResourceAgent_h |
| 32 #define InspectorResourceAgent_h | 32 #define InspectorResourceAgent_h |
| 33 | 33 |
| 34 #include "InspectorFrontend.h" | 34 #include "InspectorFrontend.h" |
| 35 #include "bindings/v8/ScriptString.h" | 35 #include "bindings/v8/ScriptString.h" |
| 36 #include "core/inspector/InspectorBaseAgent.h" | 36 #include "core/inspector/InspectorBaseAgent.h" |
| 37 #include "wtf/PassOwnPtr.h" | 37 #include "wtf/PassOwnPtr.h" |
| 38 #include "wtf/RefCounted.h" | |
| 39 #include "wtf/Vector.h" | |
| 40 #include "wtf/text/TextPosition.h" | |
| 41 #include "wtf/text/WTFString.h" | 38 #include "wtf/text/WTFString.h" |
| 42 | 39 |
| 43 | 40 |
| 44 namespace WTF { | 41 namespace WTF { |
| 45 class String; | 42 class String; |
| 46 } | 43 } |
| 47 | 44 |
| 48 namespace WebCore { | 45 namespace WebCore { |
| 49 | 46 |
| 50 class CachedResource; | 47 class CachedResource; |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 PendingXHRReplayDataMap m_pendingXHRReplayData; | 167 PendingXHRReplayDataMap m_pendingXHRReplayData; |
| 171 // FIXME: InspectorResourceAgent should now be aware of style recalculation. | 168 // FIXME: InspectorResourceAgent should now be aware of style recalculation. |
| 172 RefPtr<TypeBuilder::Network::Initiator> m_styleRecalculationInitiator; | 169 RefPtr<TypeBuilder::Network::Initiator> m_styleRecalculationInitiator; |
| 173 bool m_isRecalculatingStyle; | 170 bool m_isRecalculatingStyle; |
| 174 }; | 171 }; |
| 175 | 172 |
| 176 } // namespace WebCore | 173 } // namespace WebCore |
| 177 | 174 |
| 178 | 175 |
| 179 #endif // !defined(InspectorResourceAgent_h) | 176 #endif // !defined(InspectorResourceAgent_h) |
| OLD | NEW |