| 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 21 matching lines...) Expand all Loading... |
| 32 #define InspectorResourceAgent_h | 32 #define InspectorResourceAgent_h |
| 33 | 33 |
| 34 #include "InspectorBaseAgent.h" | 34 #include "InspectorBaseAgent.h" |
| 35 #include "InspectorFrontend.h" | 35 #include "InspectorFrontend.h" |
| 36 | 36 |
| 37 #include <wtf/PassOwnPtr.h> | 37 #include <wtf/PassOwnPtr.h> |
| 38 #include <wtf/RefCounted.h> | 38 #include <wtf/RefCounted.h> |
| 39 #include <wtf/Vector.h> | 39 #include <wtf/Vector.h> |
| 40 #include <wtf/text/WTFString.h> | 40 #include <wtf/text/WTFString.h> |
| 41 | 41 |
| 42 #if ENABLE(INSPECTOR) | |
| 43 | 42 |
| 44 namespace WTF { | 43 namespace WTF { |
| 45 class String; | 44 class String; |
| 46 } | 45 } |
| 47 | 46 |
| 48 namespace WebCore { | 47 namespace WebCore { |
| 49 | 48 |
| 50 class CachedResource; | 49 class CachedResource; |
| 51 class Document; | 50 class Document; |
| 52 class DocumentLoader; | 51 class DocumentLoader; |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 | 168 |
| 170 typedef HashMap<ThreadableLoaderClient*, RefPtr<XHRReplayData> > PendingXHRR
eplayDataMap; | 169 typedef HashMap<ThreadableLoaderClient*, RefPtr<XHRReplayData> > PendingXHRR
eplayDataMap; |
| 171 PendingXHRReplayDataMap m_pendingXHRReplayData; | 170 PendingXHRReplayDataMap m_pendingXHRReplayData; |
| 172 // FIXME: InspectorResourceAgent should now be aware of style recalculation. | 171 // FIXME: InspectorResourceAgent should now be aware of style recalculation. |
| 173 RefPtr<TypeBuilder::Network::Initiator> m_styleRecalculationInitiator; | 172 RefPtr<TypeBuilder::Network::Initiator> m_styleRecalculationInitiator; |
| 174 bool m_isRecalculatingStyle; | 173 bool m_isRecalculatingStyle; |
| 175 }; | 174 }; |
| 176 | 175 |
| 177 } // namespace WebCore | 176 } // namespace WebCore |
| 178 | 177 |
| 179 #endif // ENABLE(INSPECTOR) | |
| 180 | 178 |
| 181 #endif // !defined(InspectorResourceAgent_h) | 179 #endif // !defined(InspectorResourceAgent_h) |
| OLD | NEW |