| 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 public: | 50 public: |
| 51 enum HTTPVersion { HTTPVersionUnknown, | 51 enum HTTPVersion { HTTPVersionUnknown, |
| 52 HTTPVersion_0_9, | 52 HTTPVersion_0_9, |
| 53 HTTPVersion_1_0, | 53 HTTPVersion_1_0, |
| 54 HTTPVersion_1_1, | 54 HTTPVersion_1_1, |
| 55 HTTPVersion_2_0 }; | 55 HTTPVersion_2_0 }; |
| 56 enum SecurityStyle { | 56 enum SecurityStyle { |
| 57 SecurityStyleUnknown, | 57 SecurityStyleUnknown, |
| 58 SecurityStyleUnauthenticated, | 58 SecurityStyleUnauthenticated, |
| 59 SecurityStyleAuthenticationBroken, | 59 SecurityStyleAuthenticationBroken, |
| 60 SecurityStyleWarning, | |
| 61 SecurityStyleAuthenticated | 60 SecurityStyleAuthenticated |
| 62 }; | 61 }; |
| 63 | 62 |
| 64 class PLATFORM_EXPORT SignedCertificateTimestamp final { | 63 class PLATFORM_EXPORT SignedCertificateTimestamp final { |
| 65 public: | 64 public: |
| 66 SignedCertificateTimestamp( | 65 SignedCertificateTimestamp( |
| 67 String status, | 66 String status, |
| 68 String origin, | 67 String origin, |
| 69 String logDescription, | 68 String logDescription, |
| 70 String logId, | 69 String logId, |
| (...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 473 unsigned short m_remotePort; | 472 unsigned short m_remotePort; |
| 474 long long m_encodedBodyLength; | 473 long long m_encodedBodyLength; |
| 475 long long m_decodedBodyLength; | 474 long long m_decodedBodyLength; |
| 476 String m_downloadedFilePath; | 475 String m_downloadedFilePath; |
| 477 RefPtr<BlobDataHandle> m_downloadedFileHandle; | 476 RefPtr<BlobDataHandle> m_downloadedFileHandle; |
| 478 }; | 477 }; |
| 479 | 478 |
| 480 } // namespace blink | 479 } // namespace blink |
| 481 | 480 |
| 482 #endif // ResourceResponse_h | 481 #endif // ResourceResponse_h |
| OLD | NEW |