| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 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 * 1. Redistributions of source code must retain the above copyright | 8 * 1. 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 * | 10 * |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 | 31 |
| 32 #include "HTTPHeaderMap.h" | 32 #include "HTTPHeaderMap.h" |
| 33 #include "InspectorPageAgent.h" | 33 #include "InspectorPageAgent.h" |
| 34 #include "TextResourceDecoder.h" | 34 #include "TextResourceDecoder.h" |
| 35 #include <wtf/Deque.h> | 35 #include <wtf/Deque.h> |
| 36 #include <wtf/HashMap.h> | 36 #include <wtf/HashMap.h> |
| 37 #include <wtf/RefCounted.h> | 37 #include <wtf/RefCounted.h> |
| 38 #include <wtf/text/StringBuilder.h> | 38 #include <wtf/text/StringBuilder.h> |
| 39 #include <wtf/text/WTFString.h> | 39 #include <wtf/text/WTFString.h> |
| 40 | 40 |
| 41 #if ENABLE(INSPECTOR) | |
| 42 | 41 |
| 43 namespace WebCore { | 42 namespace WebCore { |
| 44 | 43 |
| 45 class CachedResource; | 44 class CachedResource; |
| 46 class FormData; | 45 class FormData; |
| 47 class SharedBuffer; | 46 class SharedBuffer; |
| 48 class TextResourceDecoder; | 47 class TextResourceDecoder; |
| 49 | 48 |
| 50 class XHRReplayData : public RefCounted<XHRReplayData> { | 49 class XHRReplayData : public RefCounted<XHRReplayData> { |
| 51 public: | 50 public: |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 ReusedRequestIds m_reusedXHRReplayDataRequestIds; | 180 ReusedRequestIds m_reusedXHRReplayDataRequestIds; |
| 182 typedef HashMap<String, ResourceData*> ResourceDataMap; | 181 typedef HashMap<String, ResourceData*> ResourceDataMap; |
| 183 ResourceDataMap m_requestIdToResourceDataMap; | 182 ResourceDataMap m_requestIdToResourceDataMap; |
| 184 size_t m_contentSize; | 183 size_t m_contentSize; |
| 185 size_t m_maximumResourcesContentSize; | 184 size_t m_maximumResourcesContentSize; |
| 186 size_t m_maximumSingleResourceContentSize; | 185 size_t m_maximumSingleResourceContentSize; |
| 187 }; | 186 }; |
| 188 | 187 |
| 189 } // namespace WebCore | 188 } // namespace WebCore |
| 190 | 189 |
| 191 #endif // ENABLE(INSPECTOR) | |
| 192 | 190 |
| 193 #endif // !defined(NetworkResourcesData_h) | 191 #endif // !defined(NetworkResourcesData_h) |
| OLD | NEW |