Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(854)

Side by Side Diff: third_party/WebKit/Source/platform/network/ResourceResponse.h

Issue 2135143002: Implement SignedCertificateTimestamp::isolatedCopy (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 , m_logDescription(logDescription) 77 , m_logDescription(logDescription)
78 , m_logId(logId) 78 , m_logId(logId)
79 , m_timestamp(timestamp) 79 , m_timestamp(timestamp)
80 , m_hashAlgorithm(hashAlgorithm) 80 , m_hashAlgorithm(hashAlgorithm)
81 , m_signatureAlgorithm(signatureAlgorithm) 81 , m_signatureAlgorithm(signatureAlgorithm)
82 , m_signatureData(signatureData) 82 , m_signatureData(signatureData)
83 { 83 {
84 } 84 }
85 explicit SignedCertificateTimestamp( 85 explicit SignedCertificateTimestamp(
86 const struct blink::WebURLResponse::SignedCertificateTimestamp&); 86 const struct blink::WebURLResponse::SignedCertificateTimestamp&);
87 SignedCertificateTimestamp isolatedCopy() const;
88
87 String m_status; 89 String m_status;
88 String m_origin; 90 String m_origin;
89 String m_logDescription; 91 String m_logDescription;
90 String m_logId; 92 String m_logId;
91 int64_t m_timestamp; 93 int64_t m_timestamp;
92 String m_hashAlgorithm; 94 String m_hashAlgorithm;
93 String m_signatureAlgorithm; 95 String m_signatureAlgorithm;
94 String m_signatureData; 96 String m_signatureData;
95 }; 97 };
96 98
(...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after
451 int64_t m_responseTime; 453 int64_t m_responseTime;
452 String m_remoteIPAddress; 454 String m_remoteIPAddress;
453 unsigned short m_remotePort; 455 unsigned short m_remotePort;
454 String m_downloadedFilePath; 456 String m_downloadedFilePath;
455 RefPtr<BlobDataHandle> m_downloadedFileHandle; 457 RefPtr<BlobDataHandle> m_downloadedFileHandle;
456 }; 458 };
457 459
458 } // namespace blink 460 } // namespace blink
459 461
460 #endif // ResourceResponse_h 462 #endif // ResourceResponse_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698