| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2008 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2009 Google Inc. All rights reserved. | 3 * Copyright (C) 2009 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 * 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 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY | 21 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY |
| 22 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 22 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 24 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 24 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 25 */ | 25 */ |
| 26 | 26 |
| 27 #ifndef ResourceResponse_h | 27 #ifndef ResourceResponse_h |
| 28 #define ResourceResponse_h | 28 #define ResourceResponse_h |
| 29 | 29 |
| 30 #include "File.h" | 30 #include "File.h" |
| 31 #include "HTTPHeaderMap.h" | |
| 32 #include "KURL.h" | 31 #include "KURL.h" |
| 33 #include "ResourceLoadInfo.h" | 32 #include "core/platform/network/HTTPHeaderMap.h" |
| 34 #include "ResourceLoadTiming.h" | 33 #include "core/platform/network/ResourceLoadInfo.h" |
| 34 #include "core/platform/network/ResourceLoadTiming.h" |
| 35 | 35 |
| 36 #include <wtf/PassOwnPtr.h> | 36 #include <wtf/PassOwnPtr.h> |
| 37 #include <wtf/RefPtr.h> | 37 #include <wtf/RefPtr.h> |
| 38 #include <wtf/text/CString.h> | 38 #include <wtf/text/CString.h> |
| 39 | 39 |
| 40 #if OS(SOLARIS) | 40 #if OS(SOLARIS) |
| 41 #include <sys/time.h> // For time_t structure. | 41 #include <sys/time.h> // For time_t structure. |
| 42 #endif | 42 #endif |
| 43 | 43 |
| 44 namespace WebCore { | 44 namespace WebCore { |
| (...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 305 bool m_wasFetchedViaProxy; | 305 bool m_wasFetchedViaProxy; |
| 306 double m_responseTime; | 306 double m_responseTime; |
| 307 String m_remoteIPAddress; | 307 String m_remoteIPAddress; |
| 308 unsigned short m_remotePort; | 308 unsigned short m_remotePort; |
| 309 String m_downloadFilePath; | 309 String m_downloadFilePath; |
| 310 }; | 310 }; |
| 311 | 311 |
| 312 } // namespace WebCore | 312 } // namespace WebCore |
| 313 | 313 |
| 314 #endif // ResourceResponse_h | 314 #endif // ResourceResponse_h |
| OLD | NEW |