| 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 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 196 | 196 |
| 197 BLINK_PLATFORM_EXPORT double lastModifiedDate() const; | 197 BLINK_PLATFORM_EXPORT double lastModifiedDate() const; |
| 198 BLINK_PLATFORM_EXPORT void setLastModifiedDate(double); | 198 BLINK_PLATFORM_EXPORT void setLastModifiedDate(double); |
| 199 | 199 |
| 200 BLINK_PLATFORM_EXPORT long long appCacheID() const; | 200 BLINK_PLATFORM_EXPORT long long appCacheID() const; |
| 201 BLINK_PLATFORM_EXPORT void setAppCacheID(long long); | 201 BLINK_PLATFORM_EXPORT void setAppCacheID(long long); |
| 202 | 202 |
| 203 BLINK_PLATFORM_EXPORT WebURL appCacheManifestURL() const; | 203 BLINK_PLATFORM_EXPORT WebURL appCacheManifestURL() const; |
| 204 BLINK_PLATFORM_EXPORT void setAppCacheManifestURL(const WebURL&); | 204 BLINK_PLATFORM_EXPORT void setAppCacheManifestURL(const WebURL&); |
| 205 | 205 |
| 206 // A consumer controlled value intended to be used to record opaque | |
| 207 // security info related to this request. | |
| 208 BLINK_PLATFORM_EXPORT WebCString securityInfo() const; | |
| 209 BLINK_PLATFORM_EXPORT void setSecurityInfo(const WebCString&); | |
| 210 | |
| 211 BLINK_PLATFORM_EXPORT void setHasMajorCertificateErrors(bool); | 206 BLINK_PLATFORM_EXPORT void setHasMajorCertificateErrors(bool); |
| 212 | 207 |
| 213 BLINK_PLATFORM_EXPORT SecurityStyle getSecurityStyle() const; | 208 BLINK_PLATFORM_EXPORT SecurityStyle getSecurityStyle() const; |
| 214 BLINK_PLATFORM_EXPORT void setSecurityStyle(SecurityStyle); | 209 BLINK_PLATFORM_EXPORT void setSecurityStyle(SecurityStyle); |
| 215 | 210 |
| 216 BLINK_PLATFORM_EXPORT void setSecurityDetails(const WebSecurityDetails&); | 211 BLINK_PLATFORM_EXPORT void setSecurityDetails(const WebSecurityDetails&); |
| 217 | 212 |
| 218 #if INSIDE_BLINK | 213 #if INSIDE_BLINK |
| 219 BLINK_PLATFORM_EXPORT ResourceResponse& toMutableResourceResponse(); | 214 BLINK_PLATFORM_EXPORT ResourceResponse& toMutableResourceResponse(); |
| 220 BLINK_PLATFORM_EXPORT const ResourceResponse& toResourceResponse() const; | 215 BLINK_PLATFORM_EXPORT const ResourceResponse& toResourceResponse() const; |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 324 // instance it contains. | 319 // instance it contains. |
| 325 std::unique_ptr<ResourceResponseContainer> m_ownedResourceResponse; | 320 std::unique_ptr<ResourceResponseContainer> m_ownedResourceResponse; |
| 326 | 321 |
| 327 // Should never be null. | 322 // Should never be null. |
| 328 ResourceResponse* m_resourceResponse; | 323 ResourceResponse* m_resourceResponse; |
| 329 }; | 324 }; |
| 330 | 325 |
| 331 } // namespace blink | 326 } // namespace blink |
| 332 | 327 |
| 333 #endif | 328 #endif |
| OLD | NEW |