| 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 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 BLINK_PLATFORM_EXPORT void setAppCacheID(long long); | 139 BLINK_PLATFORM_EXPORT void setAppCacheID(long long); |
| 140 | 140 |
| 141 BLINK_PLATFORM_EXPORT WebURL appCacheManifestURL() const; | 141 BLINK_PLATFORM_EXPORT WebURL appCacheManifestURL() const; |
| 142 BLINK_PLATFORM_EXPORT void setAppCacheManifestURL(const WebURL&); | 142 BLINK_PLATFORM_EXPORT void setAppCacheManifestURL(const WebURL&); |
| 143 | 143 |
| 144 // A consumer controlled value intended to be used to record opaque | 144 // A consumer controlled value intended to be used to record opaque |
| 145 // security info related to this request. | 145 // security info related to this request. |
| 146 BLINK_PLATFORM_EXPORT WebCString securityInfo() const; | 146 BLINK_PLATFORM_EXPORT WebCString securityInfo() const; |
| 147 BLINK_PLATFORM_EXPORT void setSecurityInfo(const WebCString&); | 147 BLINK_PLATFORM_EXPORT void setSecurityInfo(const WebCString&); |
| 148 | 148 |
| 149 BLINK_PLATFORM_EXPORT void setHasCertificateErrors(bool); |
| 150 |
| 149 BLINK_PLATFORM_EXPORT SecurityStyle securityStyle() const; | 151 BLINK_PLATFORM_EXPORT SecurityStyle securityStyle() const; |
| 150 BLINK_PLATFORM_EXPORT void setSecurityStyle(SecurityStyle); | 152 BLINK_PLATFORM_EXPORT void setSecurityStyle(SecurityStyle); |
| 151 | 153 |
| 152 BLINK_PLATFORM_EXPORT void setSecurityDetails(const WebString& protocol, con
st WebString& keyExchange, const WebString& cipher, const WebString& mac, int ce
rtId); | 154 BLINK_PLATFORM_EXPORT void setSecurityDetails(const WebString& protocol, con
st WebString& keyExchange, const WebString& cipher, const WebString& mac, int ce
rtId); |
| 153 | 155 |
| 154 #if INSIDE_BLINK | 156 #if INSIDE_BLINK |
| 155 BLINK_PLATFORM_EXPORT ResourceResponse& toMutableResourceResponse(); | 157 BLINK_PLATFORM_EXPORT ResourceResponse& toMutableResourceResponse(); |
| 156 BLINK_PLATFORM_EXPORT const ResourceResponse& toResourceResponse() const; | 158 BLINK_PLATFORM_EXPORT const ResourceResponse& toResourceResponse() const; |
| 157 #endif | 159 #endif |
| 158 | 160 |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 227 protected: | 229 protected: |
| 228 BLINK_PLATFORM_EXPORT void assign(WebURLResponsePrivate*); | 230 BLINK_PLATFORM_EXPORT void assign(WebURLResponsePrivate*); |
| 229 | 231 |
| 230 private: | 232 private: |
| 231 WebURLResponsePrivate* m_private; | 233 WebURLResponsePrivate* m_private; |
| 232 }; | 234 }; |
| 233 | 235 |
| 234 } // namespace blink | 236 } // namespace blink |
| 235 | 237 |
| 236 #endif | 238 #endif |
| OLD | NEW |