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

Unified 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: fix 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/platform/network/ResourceResponse.h
diff --git a/third_party/WebKit/Source/platform/network/ResourceResponse.h b/third_party/WebKit/Source/platform/network/ResourceResponse.h
index a87900aeeabcc869eda75c8baf9a91a697ac0850..f5fb8bf33c11b6d0dc8d3c4e283776f477a286e4 100644
--- a/third_party/WebKit/Source/platform/network/ResourceResponse.h
+++ b/third_party/WebKit/Source/platform/network/ResourceResponse.h
@@ -61,7 +61,7 @@ public:
SecurityStyleAuthenticated
};
- class SignedCertificateTimestamp {
+ class PLATFORM_EXPORT SignedCertificateTimestamp final {
public:
SignedCertificateTimestamp(
String status,
@@ -84,6 +84,8 @@ public:
}
explicit SignedCertificateTimestamp(
const struct blink::WebURLResponse::SignedCertificateTimestamp&);
+ SignedCertificateTimestamp isolatedCopy() const;
+
String m_status;
String m_origin;
String m_logDescription;

Powered by Google App Engine
This is Rietveld 408576698