| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 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 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 struct SignedCertificateTimestamp { | 63 struct SignedCertificateTimestamp { |
| 65 SignedCertificateTimestamp() {} | 64 SignedCertificateTimestamp() {} |
| 66 SignedCertificateTimestamp( | 65 SignedCertificateTimestamp( |
| 67 WebString status, | 66 WebString status, |
| 68 WebString origin, | 67 WebString origin, |
| 69 WebString logDescription, | 68 WebString logDescription, |
| 70 WebString logId, | 69 WebString logId, |
| (...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 323 // instance it contains. | 322 // instance it contains. |
| 324 std::unique_ptr<ResourceResponseContainer> m_ownedResourceResponse; | 323 std::unique_ptr<ResourceResponseContainer> m_ownedResourceResponse; |
| 325 | 324 |
| 326 // Should never be null. | 325 // Should never be null. |
| 327 ResourceResponse* m_resourceResponse; | 326 ResourceResponse* m_resourceResponse; |
| 328 }; | 327 }; |
| 329 | 328 |
| 330 } // namespace blink | 329 } // namespace blink |
| 331 | 330 |
| 332 #endif | 331 #endif |
| OLD | NEW |