| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2006 Apple Computer, Inc. All rights reserved. | 2 * Copyright (C) 2004, 2006 Apple Computer, 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 | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 217 #if PLATFORM(QT) | 217 #if PLATFORM(QT) |
| 218 QNetworkReplyHandler* m_job; | 218 QNetworkReplyHandler* m_job; |
| 219 #endif | 219 #endif |
| 220 | 220 |
| 221 #if PLATFORM(MAC) | 221 #if PLATFORM(MAC) |
| 222 // We need to keep a reference to the original challenge to be able to c
ancel it. | 222 // We need to keep a reference to the original challenge to be able to c
ancel it. |
| 223 // It is almost identical to m_currentWebChallenge.nsURLAuthenticationCh
allenge(), but has a different sender. | 223 // It is almost identical to m_currentWebChallenge.nsURLAuthenticationCh
allenge(), but has a different sender. |
| 224 NSURLAuthenticationChallenge *m_currentMacChallenge; | 224 NSURLAuthenticationChallenge *m_currentMacChallenge; |
| 225 #endif | 225 #endif |
| 226 AuthenticationChallenge m_currentWebChallenge; | 226 AuthenticationChallenge m_currentWebChallenge; |
| 227 #if PLATFORM(BLACKBERRY) | |
| 228 // We need to store the credentials for host and proxy separately for th
e platform | |
| 229 // networking layer. One of these will always be equal to m_currentWebCh
allenge. | |
| 230 AuthenticationChallenge m_hostWebChallenge; | |
| 231 AuthenticationChallenge m_proxyWebChallenge; | |
| 232 #endif | |
| 233 | |
| 234 ResourceHandle::FailureType m_scheduledFailureType; | 227 ResourceHandle::FailureType m_scheduledFailureType; |
| 235 Timer<ResourceHandle> m_failureTimer; | 228 Timer<ResourceHandle> m_failureTimer; |
| 236 }; | 229 }; |
| 237 | 230 |
| 238 } // namespace WebCore | 231 } // namespace WebCore |
| 239 | 232 |
| 240 #endif // ResourceHandleInternal_h | 233 #endif // ResourceHandleInternal_h |
| OLD | NEW |